Temporarily disable Surface kernel on Khanda
This commit is contained in:
parent
25ea9914ee
commit
05bde72dda
|
@ -117,11 +117,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1714203603,
|
"lastModified": 1714377222,
|
||||||
"narHash": "sha256-eT7DENhYy7EPLOqHI9zkIMD9RvMCXcqh6gGqOK5BWYQ=",
|
"narHash": "sha256-UsDsjWCKlWn8vbXi8Zza9Hkq3xyk8fpvFNo2VM5S74E=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "c1609d584a6b5e9e6a02010f51bd368cb4782f8e",
|
"rev": "2af7c78b7bb9cf18406a193eba13ef9f99388f49",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -13,11 +13,15 @@
|
||||||
host = {
|
host = {
|
||||||
role = "workstation";
|
role = "workstation";
|
||||||
apps = {
|
apps = {
|
||||||
development.enable = true;
|
development = {
|
||||||
|
enable = true;
|
||||||
|
kubernetes.enable = true;
|
||||||
|
};
|
||||||
kdeconnect.enable = true;
|
kdeconnect.enable = true;
|
||||||
media.enable = true;
|
media.enable = true;
|
||||||
office.enable = true;
|
office.enable = true;
|
||||||
pandoc.enable = true;
|
pandoc.enable = true;
|
||||||
|
recording.enable = true;
|
||||||
};
|
};
|
||||||
ui = {
|
ui = {
|
||||||
flatpak.enable = true;
|
flatpak.enable = true;
|
||||||
|
@ -35,14 +39,21 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
gremlin = {
|
||||||
|
enable = true;
|
||||||
|
services.syncthing = {
|
||||||
|
enable = true;
|
||||||
|
enableTray = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Limit number of simultaneous builds so we have two free cores.
|
# Limit number of simultaneous builds so we have two free cores.
|
||||||
# 5 max jobs * 2 cores each = 10 cores in total.
|
# 5 max jobs * 2 cores each = 10 cores in total.
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
max-jobs = 5;
|
max-jobs = 2;
|
||||||
cores = 2;
|
cores = 10;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure the virtual machine created by nixos-rebuild build-vm
|
# Configure the virtual machine created by nixos-rebuild build-vm
|
||||||
|
|
|
@ -52,4 +52,7 @@
|
||||||
ipts.enable = true;
|
ipts.enable = true;
|
||||||
surface-control.enable = true;
|
surface-control.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# FIXME: Use default kernel to avoid full kernel rebuilds
|
||||||
|
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_latest;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
[/org/gnome/shell/extensions/dash-to-panel/]
|
#[/org/gnome/shell/extensions/dash-to-panel/]
|
||||||
|
[/]
|
||||||
animate-appicon-hover=false
|
animate-appicon-hover=false
|
||||||
animate-appicon-hover-animation-extent={'RIPPLE': 4, 'PLANK': 4, 'SIMPLE': 1}
|
animate-appicon-hover-animation-extent={'RIPPLE': 4, 'PLANK': 4, 'SIMPLE': 1}
|
||||||
appicon-margin=8
|
appicon-margin=8
|
||||||
|
|
Loading…
Reference in a new issue