diff --git a/absol/configuration.nix b/absol/configuration.nix index 67ee2a3..047cb73 100755 --- a/absol/configuration.nix +++ b/absol/configuration.nix @@ -109,6 +109,9 @@ enable = true; }; + # iwlwifi fix? + hardware.enableRedistributableFirmware = true; + # bluetooth hardware.bluetooth.enable = true; hardware.bluetooth.powerOnBoot = true; @@ -138,15 +141,8 @@ # List packages installed in system profile. environment.systemPackages = - with pkgs; - let - catp-gtk = pkgs.catppuccin-gtk.override { - accents = [ "flamingo" ]; # You can specify multiple accents here to output multiple themes - size = "compact"; - tweaks = [ "rimless" "black" ]; # You can also specify multiple tweaks here - variant = "macchiato"; - }; - in [ + with pkgs; + [ texliveFull # for connecting to nas nfs-utils @@ -154,40 +150,14 @@ # some standards for convenience vim parted - os-prober qpdfview - swww - - # greeter - greetd.gtkgreet - catp-gtk # deps for hyprland / eww socat - xdg-desktop-portal-hyprland ]; system.stateVersion = "24.05"; - # NFS setup - services.rpcbind.enable = true; # needed for NFS - systemd.mounts = [{ - type = "nfs"; - mountConfig = { - Options = "noatime"; - }; - what = "192.168.178.20:/volume1/MiniDrive"; - where = "/MiniDrive"; - }]; - - systemd.automounts = [{ - wantedBy = [ "multi-user.target" ]; - automountConfig = { - TimeoutIdleSec = "10"; - }; - where = "/MiniDrive"; - }]; - # source zsh programs.zsh.enable = true; users.defaultUserShell = pkgs.zsh; @@ -200,8 +170,6 @@ environment.sessionVariables = { ## disable logging when direnv changes DIRENV_LOG_FORMAT = []; - # GTK theme (set here for greetd) - GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; }; # fonts @@ -237,8 +205,6 @@ IdentityFile ~/.ssh/git ''; - programs.steam.enable = true; - # thunar programs.thunar = { enable = true;