diff --git a/flake.nix b/flake.nix index 8ca0be4..df05288 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ stylix.url = "github:danth/stylix"; }; - outputs = { self, nixpkgs, nix, nixos-hardware, home-manager, stylix }: { + outputs = { self, nixpkgs, nix, nixos-hardware, home-manager, stylix, ... }: { nixosConfigurations = { hornt = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; diff --git a/users/phoenix/hm.nix b/users/phoenix/hm.nix index bb8fabd..9eb780b 100644 --- a/users/phoenix/hm.nix +++ b/users/phoenix/hm.nix @@ -1,18 +1,11 @@ { config, pkgs, home-manager, ... }: { - - # stylin' - stylix.image = pkgs.fetchurl { - url = "https://www.pixelstalk.net/wp-content/uploads/2016/05/Epic-Anime-Awesome-Wallpapers.jpg"; - sha256 = "enQo3wqhgf0FEPHj2coOCvo7DuZv+x5rL/WIo4qPI50="; - }; - stylix.polarity = "dark"; - - home.stateVersion = "23.05"; home.packages = with pkgs; [ + sddm + # gnome hyprland git # default utils improvements @@ -24,8 +17,38 @@ ripgrep # grep kitty plex-media-player + telegram-desktop ]; + /* + programs.gnome = { pkgs, ... }: { + enable = true; + config = { + services.xserver.enable = true; + services.xserver.displayManager.gdm.enable = true; + services.xserver.desktopManager.gnome.enable = true; + environment.gnome.excludePackages = (with pkgs; [ + gnome-photos + gnome-tour + ]) ++ (with pkgs.gnome; [ + cheese # webcam tool + gnome-music + gedit # text editor + epiphany # web browser + geary # email reader + gnome-characters + yelp # Help view + gnome-contacts + gnome-initial-setup + ]); + programs.dconf.enable = true; + environment.systemPackages = with pkgs; [ + gnome.gnome-tweaks + ]; + }; + }; + */ + programs.git = { enable = true; userName = "Jessica Canady"; @@ -45,4 +68,15 @@ }; programs.starship.enable = true; + + + # stylin' + /* + stylix.image = pkgs.fetchurl { + url = "https://www.pixelstalk.net/wp-content/uploads/2016/05/Epic-Anime-Awesome-Wallpapers.jpg"; + sha256 = "enQo3wqhgf0FEPHj2coOCvo7DuZv+x5rL/WIo4qPI50="; + }; + stylix.polarity = "dark"; + */ + }