chore: update lock file

This commit is contained in:
Artur Manuel 2024-10-29 15:37:11 +00:00
commit 0226353025
17 changed files with 425 additions and 86 deletions

View file

@ -14,7 +14,7 @@
inputs.self.nixosModules.default
({config, ...}: {
config = {
alqueva.fish.enable = true;
alqueva.xonsh.enable = true;
nix = {
settings.extra-experimental-features = [
"nix-command"
@ -25,15 +25,12 @@
dates = "weekly";
};
};
users = {
users.${user} = {
isNormalUser = true;
useDefaultShell = true;
initialPassword = "password";
extraGroups = ["wheel" "networkmanager" "video" "audio" "input" "libvirtd"];
name = user;
};
defaultUserShell = config.programs.fish.package;
users.users.${user} = {
isNormalUser = true;
shell = config.programs.xonsh.package;
initialPassword = "password";
extraGroups = ["wheel" "networkmanager" "video" "audio" "input" "libvirtd"];
name = user;
};
environment.shellAliases = {
rebs = "nixos-rebuild --use-remote-sudo switch --flake .#${host}";