Merge branch 'desktop' into laptop

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-06-05 01:11:17 -03:00
commit f56c582a13
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
8 changed files with 37 additions and 233 deletions

View file

@ -1,8 +1,4 @@
{ hyprland, ... }:
{
imports = [ hyprland.homeManagerModules.default ];
wayland.windowManager.hyprland = {
enable = true;

View file

@ -29,6 +29,7 @@ return {
"rust",
"tsx",
"typescript",
"svelte",
},
ignore_filetypes = { -- disable format on save for specified filetypes
-- "python",

16
programs/tmux/default.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
plugins = with pkgs.tmuxPlugins; [
{
plugin = catppuccin;
extraConfig = ''
set -g @catppuccin_flavour 'frappe'
'';
}
];
};
}