move to gnome
Some checks failed
Verify Nix Flake / verify_build (push) Failing after 43s

This commit is contained in:
k 2025-05-23 15:33:01 -04:00
parent a915a3a779
commit 5199d55c29
2 changed files with 17 additions and 6 deletions

View File

@ -13,6 +13,17 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPatches = [
{
name = "amdgpu-ignore-ctx-privileges";
patch = pkgs.fetchpatch {
name = "cap_sys_nice_begone.patch";
url = "https://github.com/Frogging-Family/community-patches/raw/master/linux61-tkg/cap_sys_nice_begone.mypatch";
hash = "sha256-Y3a0+x2xvHsfLax/uwycdJf3xLxvVfkfDVqjkxNaYEo=";
};
}
];
networking = { networking = {
hostName = "desktop"; hostName = "desktop";
@ -24,8 +35,6 @@
gc.automatic = true; gc.automatic = true;
settings = { settings = {
experimental-features = ["nix-command" "flakes"]; experimental-features = ["nix-command" "flakes"];
substituters = ["http://nix.dhilton.xyz/" "https://cache.nixos.org/"];
trusted-public-keys = ["nix.dhilton.xyz:MOW060dF1A0/UXmPZBue9KMxCO13PHYFwx1X9hcdYZ4="];
}; };
}; };
@ -42,9 +51,11 @@
defaultRuntime = true; defaultRuntime = true;
autoStart = true; autoStart = true;
}; };
xserver.enable = true; xserver = {
displayManager.sddm.enable = true; enable = true;
desktopManager.plasma6.enable = true; displayManager.gdm.enable = true;
desktopManager.gnome.enable = true;
}
}; };
stylix = { stylix = {

View File

@ -4,7 +4,7 @@
inputs, inputs,
... ...
}: { }: {
imports = [../home/home_common.nix]; imports = [../home/home_common.nix ../home/gnone.nix];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
home = { home = {
packages = with pkgs; [ packages = with pkgs; [