mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 10:04:09 -05:00
maia: adjustments
This commit is contained in:
@@ -15,6 +15,4 @@
|
||||
# Fix broken stuff
|
||||
services.avahi.enable = false;
|
||||
networking.networkmanager.enable = false;
|
||||
|
||||
i18n.defaultLocale = "pt_BR.UTF-8";
|
||||
}
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
services = {
|
||||
xserver = {
|
||||
enable = true;
|
||||
desktopManager.pantheon = {
|
||||
enable = true;
|
||||
};
|
||||
displayManager.lightdm = {
|
||||
enable = true;
|
||||
greeters.pantheon.enable = true;
|
||||
};
|
||||
};
|
||||
pantheon = {
|
||||
apps.enable = true;
|
||||
};
|
||||
geoclue2.enable = true;
|
||||
};
|
||||
programs = {
|
||||
pantheon-tweaks.enable = true;
|
||||
};
|
||||
# Fix shutdown taking a long time
|
||||
# https://gist.github.com/worldofpeace/27fcdcb111ddf58ba1227bf63501a5fe
|
||||
systemd.extraConfig = ''
|
||||
DefaultTimeoutStopSec=10s
|
||||
DefaultTimeoutStartSec=10s
|
||||
'';
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
{ pkgs, config, ... }:
|
||||
{ pkgs, lib, config, persistence, ... }:
|
||||
{
|
||||
users.mutableUsers = false;
|
||||
users.users.layla = {
|
||||
@@ -17,4 +17,8 @@
|
||||
neededForUsers = true;
|
||||
};
|
||||
|
||||
# Persist entire home
|
||||
environment.persistence = lib.mkIf persistence {
|
||||
"/persist".directories = [ "/home/layla" ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
../common/users/layla.nix
|
||||
|
||||
./services
|
||||
../common/optional/pantheon.nix
|
||||
../common/optional/quietboot.nix
|
||||
../common/optional/tailscale.nix
|
||||
];
|
||||
@@ -40,6 +41,7 @@
|
||||
};
|
||||
};
|
||||
|
||||
i18n.defaultLocale = "pt_BR.UTF-8";
|
||||
hardware.nvidia.prime.offload.enable = false;
|
||||
system.stateVersion = "22.05";
|
||||
# TODO: Add graphical stuff
|
||||
|
||||
Reference in New Issue
Block a user