parent
dc1b120c50
commit
b05864573d
4 changed files with 30 additions and 8 deletions
devices
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
config,
|
||||
jovian,
|
||||
self,
|
||||
...
|
||||
}: let
|
||||
inherit (config.vars) mainUser hostName;
|
||||
|
@ -13,6 +14,8 @@ in {
|
|||
./hardware-configuration.nix
|
||||
|
||||
./modules/desktop.nix
|
||||
|
||||
self.nixosModules.plymouth
|
||||
];
|
||||
|
||||
vars = {
|
||||
|
@ -21,6 +24,11 @@ in {
|
|||
promptMainColor = "pink";
|
||||
};
|
||||
|
||||
boot.plymouth = {
|
||||
enable = true;
|
||||
theme = "steamos";
|
||||
};
|
||||
|
||||
users.users.${mainUser} = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
|
|
|
@ -12,13 +12,13 @@ in {
|
|||
../../modules/ags
|
||||
../../modules/audio.nix
|
||||
../../modules/kmscon.nix
|
||||
../../modules/plymouth.nix
|
||||
../../modules/printer.nix
|
||||
../../modules/tailscale.nix
|
||||
|
||||
./modules/security.nix
|
||||
|
||||
self.nixosModules.desktop
|
||||
self.nixosModules.plymouth
|
||||
];
|
||||
|
||||
vars = {
|
||||
|
@ -37,6 +37,11 @@ in {
|
|||
fontSize = 12.5;
|
||||
};
|
||||
|
||||
boot.plymouth = {
|
||||
enable = true;
|
||||
theme = "dracula";
|
||||
};
|
||||
|
||||
users.users.${mainUser} = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue