mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
36 lines
687 B
Nix
36 lines
687 B
Nix
{ self, lib, minimal, ... }:
|
|
{
|
|
|
|
imports = [
|
|
./disk-config.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking = {
|
|
hostName = "toto";
|
|
firewall.enable = false;
|
|
};
|
|
|
|
swarselprofiles = {
|
|
toto = lib.mkIf (!minimal) true;
|
|
btrfs = true;
|
|
};
|
|
|
|
swarselsystems = {
|
|
info = "~SwarselSystems~ remote install helper";
|
|
wallpaper = self + /files/wallpaper/lenovowp.png;
|
|
isImpermanence = true;
|
|
isCrypted = true;
|
|
isSecureBoot = false;
|
|
isSwap = true;
|
|
swapSize = "2G";
|
|
# rootDisk = "/dev/nvme0n1";
|
|
rootDisk = "/dev/vda";
|
|
# rootDisk = "/dev/vda";
|
|
isBtrfs = true;
|
|
isLinux = true;
|
|
isLaptop = false;
|
|
isNixos = true;
|
|
};
|
|
|
|
}
|