Change structure, add scanner deps and fix configurations
This commit is contained in:
@@ -14,18 +14,18 @@
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/da148e71-90a0-4307-b820-42474191a207";
|
||||
{ device = "/dev/disk/by-uuid/6002ba98-6ce8-49d5-a501-9c2500343b2a";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/8AF0-72B6";
|
||||
{ device = "/dev/disk/by-uuid/E9B0-43BF";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0077" "dmask=0077" ];
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/d892a0d1-4025-4391-95e0-949c627f4ce7"; }
|
||||
[ { device = "/dev/disk/by-uuid/b442da0b-8a3e-4f05-b13f-aec8a89917be"; }
|
||||
];
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
|
||||
@@ -8,8 +8,7 @@
|
||||
os.audio.pipewire.enable = true;
|
||||
|
||||
# Networks services
|
||||
os.networks.dns.enable = true;
|
||||
os.networks.manager.enable = true;
|
||||
os.networking.enable = true;
|
||||
|
||||
# Printing and sharing
|
||||
os.networks.samba.enable = true;
|
||||
@@ -23,7 +22,6 @@
|
||||
os.virtualisation.podman.enable = true;
|
||||
|
||||
# Terminal
|
||||
os.flatpak.enable = true;
|
||||
programs.ssh.enableAskPassword = false; # No-window git push fix
|
||||
|
||||
# Shells configurations
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
|
||||
os.flatpak.enable = true;
|
||||
services.flatpak.packages = [
|
||||
"io.github.flattool.Warehouse"
|
||||
];
|
||||
|
||||
@@ -4,10 +4,7 @@
|
||||
users.users = {
|
||||
alistreaza = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"podman"
|
||||
];
|
||||
extraGroups = [ "wheel" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user