[WIP] New pbp host and modules

This commit is contained in:
Andrea Ciceri 2022-10-10 11:15:35 +02:00
parent 6d8b757919
commit f62f6ff7f4
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
8 changed files with 139 additions and 5 deletions

View file

@ -12,9 +12,27 @@
"common"
"ssh"
"ccr"
#"mara"
"mara"
"xfce"
"battery"
];
ccr.enable = true;
# mara.enable = true;
mara = {
enable = true;
modules = [
"shell"
"mpv"
"firefox"
"git"
"chrome"
"udiskie"
];
};
home-manager.users.mara = {
programs.chromium.package = lib.mkForce pkgs.chromium;
};
i18n.defaultLocale = lib.mkForce "it_IT.UTF-8";
}

View file

@ -48,16 +48,16 @@
fileSystems = {
"/" = {
device = "/dev/nvme0n1p1";
device = "/dev/disk/by-label/nixos";
fsType = "btrfs";
};
"/boot" = {
device = "/dev/disk/by-uuid/C406-2AFC";
device = "/dev/disk/by-label/boot";
fsType = "vfat";
};
};
swapDevices = [{device = "/dev/disk/by-uuid/e236d328-496e-4cf8-ba54-857789ca258f";}];
swapDevices = [{device = "/dev/disk/by-label/swap";}];
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";