1769288238
This commit is contained in:
@@ -1,20 +1,14 @@
|
||||
{inputs, ...}: {
|
||||
imports = with inputs; [
|
||||
self.nixosModules.desktop
|
||||
self.nixosModules.system
|
||||
self.modules.shared.nixos
|
||||
./disko
|
||||
./hardware
|
||||
./misc
|
||||
];
|
||||
|
||||
networking = {
|
||||
hostId = "bd1b5837";
|
||||
hostName = "morphius";
|
||||
};
|
||||
|
||||
system.stateVersion = "25.11";
|
||||
time.timeZone = "Europe/Kyiv";
|
||||
imports = with inputs;
|
||||
[
|
||||
self.nixosModules.desktop
|
||||
self.nixosModules.shared
|
||||
self.nixosModules.system
|
||||
./disko
|
||||
./hardware
|
||||
./misc
|
||||
]
|
||||
++ [inputs.nix-bwrapper.nixosModules.default];
|
||||
|
||||
desktop.gnome.enable = true;
|
||||
|
||||
@@ -31,17 +25,24 @@
|
||||
];
|
||||
|
||||
module = {
|
||||
host = {
|
||||
id = "bd1b5837";
|
||||
name = "morphius";
|
||||
type = "laptop";
|
||||
stateVersion = "25.11";
|
||||
};
|
||||
config = {
|
||||
secureBoot = true;
|
||||
# secureBoot = true;
|
||||
tpmDiskUnlock = true;
|
||||
powerSave = true;
|
||||
useIwd = true;
|
||||
vaapi = "intel-media-driver";
|
||||
locale = "uk_UA.UTF-8";
|
||||
timeZone = "Europe/Kyiv";
|
||||
};
|
||||
stylix = {
|
||||
enable = true;
|
||||
theme = "sandcastle";
|
||||
};
|
||||
locale = "uk_UA.UTF-8";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user