Formatting and use of new module

This commit is contained in:
pazpi 2024-09-11 21:31:22 +02:00
parent c99cad7aef
commit cbb0f773b9
3 changed files with 23 additions and 12 deletions

View file

@ -14,6 +14,7 @@
my = { my = {
desktop = { desktop = {
audio.enable = false;
desktopUser = { desktopUser = {
enable = true; enable = true;
@ -21,12 +22,20 @@
hashedPassword = "$y$j9T$dA94KVg1/jYLqclQQbTDk.$cnfxBWUN8P4shr8Kkipv5bU/RCtQNoAwYFDZ0X/BYs5"; hashedPassword = "$y$j9T$dA94KVg1/jYLqclQQbTDk.$cnfxBWUN8P4shr8Kkipv5bU/RCtQNoAwYFDZ0X/BYs5";
}; };
audio.enable = false; plymouth = {
enable = true;
theme = "colorful_loop";
}; };
utils.commons.enable = true; utils = {
commons.enable = true;
i18n.enable = true;
};
}; };
};
time.timeZone = "Europe/Rome";
# Vedi https://github.com/TLATER/dotfiles/blob/f989a86890f27f6b089e9d74b7e8356ec8e5683d/home-config/hosts/yui.nix # Vedi https://github.com/TLATER/dotfiles/blob/f989a86890f27f6b089e9d74b7e8356ec8e5683d/home-config/hosts/yui.nix
# home-manager.users.pazpi = import "${flake-inputs.self}/home-config/hosts/deadbeef.nix"; # home-manager.users.pazpi = import "${flake-inputs.self}/home-config/hosts/deadbeef.nix";

View file

@ -1,7 +1,8 @@
{ config {
, pkgs config,
, lib pkgs,
, ... lib,
...
}: }:
with lib; with lib;

View file

@ -1,7 +1,8 @@
{ config {
, pkgs config,
, lib pkgs,
, ... lib,
...
}: }:
with lib; with lib;