don't use latest kernels

This commit is contained in:
Rouven Seifert 2023-08-29 20:34:20 +02:00
parent 505d713001
commit 0a8ef57823
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
6 changed files with 23 additions and 23 deletions

View file

@ -236,11 +236,11 @@
"rust-overlay": "rust-overlay"
},
"locked": {
"lastModified": 1693089798,
"narHash": "sha256-aNRPXtI7TXCu6rXAQMPdx9nmpWCyCQ7gaKIxOFX8W5I=",
"lastModified": 1693293723,
"narHash": "sha256-pUw9KoWq9S0Cv9EIm601s0xh1zqcxs57JJtPzGrhFAU=",
"owner": "helix-editor",
"repo": "helix",
"rev": "aeaeb09f486c2bc7f8c563bceece03a0954576b9",
"rev": "40d7e6c9c85d4f1ce2345f6e9d59fc091243124d",
"type": "github"
},
"original": {
@ -255,11 +255,11 @@
]
},
"locked": {
"lastModified": 1693108765,
"narHash": "sha256-U1btmyF7SMX+y80EXYva5Xj6lpn20xPbHbuoe/2bSIw=",
"lastModified": 1693187908,
"narHash": "sha256-cTcNpsqi1llmUFl9bmCdD0mTyfjhBrNFPhu2W12WXzA=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "9706fb8e441a7c56c68bb079480938ed505e8102",
"rev": "8bde7a651b94ba30bd0baaa9c4a08aae88cc2e92",
"type": "github"
},
"original": {
@ -448,11 +448,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1693003285,
"narHash": "sha256-5nm4yrEHKupjn62MibENtfqlP6pWcRTuSKrMiH9bLkc=",
"lastModified": 1693250523,
"narHash": "sha256-y3up5gXMTbnCsXrNEB5j+7TVantDLUYyQLu/ueiXuyg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "5690c4271f2998c304a45c91a0aeb8fb69feaea7",
"rev": "3efb0f6f404ec8dae31bdb1a9b17705ce0d6986e",
"type": "github"
},
"original": {
@ -586,11 +586,11 @@
"nixpkgs-stable": "nixpkgs-stable_2"
},
"locked": {
"lastModified": 1693105804,
"narHash": "sha256-nlqNjW7dfucUJQqRGuG08MKPOSME8fLOCx/bd9hiEPs=",
"lastModified": 1693263624,
"narHash": "sha256-GzmVIUKStC1HCzUb0YdGDPAewv4+KxCHKQZEZZDpApY=",
"owner": "Mic92",
"repo": "sops-nix",
"rev": "0618c8f0ed5255ad74ee08d1618841ff5af85c86",
"rev": "c89ee06488706b587a22085b1844bf9ca6ba5687",
"type": "github"
},
"original": {

View file

@ -25,7 +25,6 @@
};
efi.efiSysMountPoint = "/boot/efi";
};
kernelPackages = pkgs.linuxPackages_latest;
initrd.systemd.enable = true;
};
zramSwap.enable = true;

View file

@ -18,7 +18,6 @@
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
kernelPackages = pkgs.linuxPackages_latest;
tmp.useTmpfs = true;
};
services.btrfs.autoScrub.enable = true;

View file

@ -185,12 +185,12 @@
};
};
security.tpm2 = {
enable = true;
pkcs11.enable = true;
abrmd.enable = true;
tctiEnvironment.enable = true;
};
# security.tpm2 = {
# enable = true;
# pkcs11.enable = true;
# abrmd.enable = true;
# tctiEnvironment.enable = true;
# };
hardware.opengl.extraPackages = with pkgs; [
intel-compute-runtime

View file

@ -58,6 +58,10 @@ in
match = "Host ifsr.de User git";
identityFile = git;
};
"git@staging.ifsr.de" = {
match = "Host staging.ifsr.de User git";
identityFile = git;
};
};
extraConfig = ''
IdentityFile ~/.ssh/id_ed25519

View file

@ -61,8 +61,6 @@ in
};
config = mkIf cfg.enable {
xdg.configFile."shikane/config.toml".source =
tomlFormat.generate "shikane-config" cfg.settings;
systemd.user.services.shikane = {
Unit = {
Description = "Dynamic output configuration tool";
@ -71,7 +69,7 @@ in
PartOf = [ "graphical-session.target" ];
};
Service = { ExecStart = "${cfg.package}/bin/shikane"; };
Service = { ExecStart = "${cfg.package}/bin/shikane -c ${tomlFormat.generate "shikane-config.toml" cfg.settings}"; };
Install = { WantedBy = [ "graphical-session.target" ]; };
};