Remove Gnome stuff, make the thing build again.

This commit is contained in:
Jessica Canady 2023-06-25 22:13:21 -04:00
parent 84db8418fe
commit d197b54f1d
2 changed files with 44 additions and 10 deletions

View file

@ -8,7 +8,7 @@
stylix.url = "github:danth/stylix"; stylix.url = "github:danth/stylix";
}; };
outputs = { self, nixpkgs, nix, nixos-hardware, home-manager, stylix }: { outputs = { self, nixpkgs, nix, nixos-hardware, home-manager, stylix, ... }: {
nixosConfigurations = { nixosConfigurations = {
hornt = nixpkgs.lib.nixosSystem { hornt = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";

View file

@ -1,18 +1,11 @@
{ config, pkgs, home-manager, ... }: { 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.stateVersion = "23.05";
home.packages = with pkgs; [ home.packages = with pkgs; [
sddm
# gnome
hyprland hyprland
git git
# default utils improvements # default utils improvements
@ -24,8 +17,38 @@
ripgrep # grep ripgrep # grep
kitty kitty
plex-media-player 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 = { programs.git = {
enable = true; enable = true;
userName = "Jessica Canady"; userName = "Jessica Canady";
@ -45,4 +68,15 @@
}; };
programs.starship.enable = true; 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";
*/
} }