diff --git a/home/programs/nvim/plugins/cmp.nix b/home/programs/nvim/plugins/cmp.nix index e53726a..acaef28 100644 --- a/home/programs/nvim/plugins/cmp.nix +++ b/home/programs/nvim/plugins/cmp.nix @@ -68,7 +68,6 @@ Calendar = "", Watch = "󰥔", Package = "", - Copilot = "", Codeium = "", TabNine = "", } diff --git a/home/programs/nvim/plugins/utils.nix b/home/programs/nvim/plugins/utils.nix index e5ec305..e7d5aa7 100644 --- a/home/programs/nvim/plugins/utils.nix +++ b/home/programs/nvim/plugins/utils.nix @@ -4,7 +4,7 @@ FloatBorder.fg = "#${config.lib.stylix.colors.base0D}"; }; plugins = { - copilot-vim.enable = true; + copilot-vim.enable = false; flash.enable = true; image = { enable = false; diff --git a/home/programs/office/default.nix b/home/programs/office/default.nix index 4f26646..3d1b3c8 100644 --- a/home/programs/office/default.nix +++ b/home/programs/office/default.nix @@ -1,3 +1,3 @@ { pkgs, ... }: { - home.packages = with pkgs; [ libreoffice thunderbird marp-cli ]; + home.packages = with pkgs; [ libreoffice thunderbird marp-cli qpdf ]; } diff --git a/home/programs/thunar/default.nix b/home/programs/thunar/default.nix index e165d31..6d37d60 100644 --- a/home/programs/thunar/default.nix +++ b/home/programs/thunar/default.nix @@ -1,48 +1,5 @@ # Thunar is a file explorer { pkgs, ... }: { # ctrl + m to toggle the menubar - home.packages = with pkgs.xfce; [ - thunar - xfconf - tumbler - thunar-archive-plugin - thunar-volman - ]; - - # home.file.".config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml".text = '' - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # - # ''; + home.packages = with pkgs.xfce; [ thunar xfconf tumbler ]; } diff --git a/home/system/hyprpanel/default.nix b/home/system/hyprpanel/default.nix index 29c2481..3c0ef35 100644 --- a/home/system/hyprpanel/default.nix +++ b/home/system/hyprpanel/default.nix @@ -19,6 +19,7 @@ in { programs.hyprpanel = { enable = true; + overlay.enable = true; systemd.enable = true; hyprland.enable = true; overwrite.enable = true; @@ -59,11 +60,14 @@ in { bar.network.truncation_size = 12; bar.volume.label = false; bar.windowtitle.label = true; + bar.workspaces.applicationIconEmptyWorkspace = ""; bar.workspaces.hideUnoccupied = false; - bar.workspaces.monitorSpecific = true; + bar.workspaces.monitorSpecific = false; bar.workspaces.numbered_active_indicator = "color"; bar.workspaces.showApplicationIcons = true; bar.workspaces.showIcons = true; + bar.workspaces.workspaces = 5; + bar.workspaces.show_numbered = false; menus.clock.time.hideSeconds = true; menus.clock.time.military = true; menus.clock.weather.key = weatherapikey; diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix index 1ddf7f7..5ea071b 100644 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -90,7 +90,6 @@ xz unzip p7zip - unrar optipng pfetch pandoc @@ -113,7 +112,6 @@ # Just cool peaclock cbonsai - pipes cmatrix # cava @@ -128,6 +126,7 @@ emacs29-pgtk zotero_7 chromium + remmina # inputs.zen-browser.packages."${pkgs.system}" ]; diff --git a/nixos/audio.nix b/nixos/audio.nix index f25767a..76758ee 100644 --- a/nixos/audio.nix +++ b/nixos/audio.nix @@ -1,6 +1,6 @@ { security.rtkit.enable = true; - hardware.pulseaudio.enable = false; + services.pulseaudio.enable = false; services.pipewire = { enable = true; diff --git a/nixos/home-manager.nix b/nixos/home-manager.nix index 0875089..fb291c3 100644 --- a/nixos/home-manager.nix +++ b/nixos/home-manager.nix @@ -1,6 +1,6 @@ { inputs, ... }: { home-manager = { - useGlobalPkgs = true; + useGlobalPkgs = false; useUserPackages = true; backupFileExtension = "hm-backup"; extraSpecialArgs = { inherit inputs; }; diff --git a/nixos/users.nix b/nixos/users.nix index 947ae71..57369ca 100644 --- a/nixos/users.nix +++ b/nixos/users.nix @@ -5,6 +5,15 @@ let userId = config.var.uid; in { programs.zsh.enable = true; + + # Thunar plugins and services + programs.thunar.plugins = with pkgs.xfce; [ + thunar-archive-plugin + thunar-volman + ]; + programs.xfconf.enable = true; + services.tumbler.enable = true; + users = { defaultUserShell = pkgs.zsh; users.${username} = {