add sbctl

This commit is contained in:
Mohamed Chrayed
2026-03-03 13:49:57 +01:00
parent a6a99ee41e
commit 6aec166b3a
4 changed files with 10 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
locale locale
network network
nix-settings nix-settings
security rtkit
shellapps shellapps
user user
version version

View File

@@ -1,5 +1,5 @@
{ ... }: { { ... }: {
flake.nixosModules.security = { flake.nixosModules.rtkit = {
security.rtkit.enable = true; security.rtkit.enable = true;
}; };
} }

View File

@@ -11,6 +11,7 @@
onepassword onepassword
steam steam
lact lact
secure-boot
]; ];
home-manager.users.${user}.imports = with config.flake.homeModules; [ home-manager.users.${user}.imports = with config.flake.homeModules; [

View File

@@ -0,0 +1,7 @@
{ ... }: {
flake.nixosModules.secure-boot = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
sbctl
];
};
}