switch to gnome

This commit is contained in:
k 2025-06-22 02:57:43 -04:00
parent aa461a8344
commit a9beac4f61
2 changed files with 21 additions and 9 deletions

View File

@ -55,6 +55,10 @@
services = {
hardware.bolt = {enable = false;};
xserver = {
displayManager.gdm.enable = true;
desktopManager.gnome.enable = true;
};
pipewire = {
enable = true;
alsa.enable = true;
@ -165,20 +169,14 @@
programs = {
zsh.enable = true;
regreet.enable = true;
hyprlock.enable = true;
hyprland = {
enable = true;
withUWSM = true;
};
};
users.users.k = {
isNormalUser = true;
description = "k";
extraGroups = ["networkmanager" "wheel" "cdrom" "libvirtd"];
packages = with pkgs; [nushell];
shell = pkgs.nushell;
packages = with pkgs; [zsh];
shell = pkgs.zsh;
};
home-manager = {
@ -190,6 +188,20 @@
sessionVariables = {MOZ_USE_XINPUT2 = "1";};
systemPackages = with pkgs; [
];
gnome.excludePackages = (with pkgs; [
atomix # puzzle game
cheese # webcam tool
epiphany # web browser
geary # email reader
gedit # text editor
gnome-characters
gnome-music
gnome-photos
gnome-tour
hitori # sudoku game
iagno # go game
tali # poker game
]);
};
systemd.sleep.extraConfig = ''

View File

@ -6,7 +6,7 @@
}: {
imports = [
../home/home_common.nix
../home/hyprland.nix
../home/gnome.nix
];
nixpkgs.config.allowUnfree = true;