Temporarily disable Surface kernel on Khanda
This commit is contained in:
parent
25ea9914ee
commit
05bde72dda
|
@ -117,11 +117,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1714203603,
|
||||
"narHash": "sha256-eT7DENhYy7EPLOqHI9zkIMD9RvMCXcqh6gGqOK5BWYQ=",
|
||||
"lastModified": 1714377222,
|
||||
"narHash": "sha256-UsDsjWCKlWn8vbXi8Zza9Hkq3xyk8fpvFNo2VM5S74E=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "c1609d584a6b5e9e6a02010f51bd368cb4782f8e",
|
||||
"rev": "2af7c78b7bb9cf18406a193eba13ef9f99388f49",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -13,11 +13,15 @@
|
|||
host = {
|
||||
role = "workstation";
|
||||
apps = {
|
||||
development.enable = true;
|
||||
development = {
|
||||
enable = true;
|
||||
kubernetes.enable = true;
|
||||
};
|
||||
kdeconnect.enable = true;
|
||||
media.enable = true;
|
||||
office.enable = true;
|
||||
pandoc.enable = true;
|
||||
recording.enable = true;
|
||||
};
|
||||
ui = {
|
||||
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.
|
||||
# 5 max jobs * 2 cores each = 10 cores in total.
|
||||
nix.settings = {
|
||||
max-jobs = 5;
|
||||
cores = 2;
|
||||
max-jobs = 2;
|
||||
cores = 10;
|
||||
};
|
||||
|
||||
# Configure the virtual machine created by nixos-rebuild build-vm
|
||||
|
|
|
@ -52,4 +52,7 @@
|
|||
ipts.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-animation-extent={'RIPPLE': 4, 'PLANK': 4, 'SIMPLE': 1}
|
||||
appicon-margin=8
|
||||
|
|
Loading…
Reference in a new issue