1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-04-03 18:14:15 +00:00
This commit is contained in:
Rae 5e 2025-03-03 19:54:14 -05:00
parent 65dc01e1d1
commit f2644a48ad
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
2 changed files with 4 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{ inputs, pkgs, ... }: {
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
trusted-users = [ "root" "rae" ];
@ -12,7 +12,6 @@
isNormalUser = true;
extraGroups = [ "wheel" "docker" "jackaudio" ];
hashedPassword = "$y$j9T$YPq.Kl8rss1JmJ5Vg6cHE/$2kdfzCkkhaO.I4u714EQnS/ZFert5byisiRVxtC.9G2";
shell = pkgs.fish;
};
i18n.defaultLocale = "en_US.UTF-8";

View file

@ -1,7 +1,7 @@
{ config, pkgs, inputs, ... }: {
imports = [
inputs.nix-flatpak.nixosModules.nix-flatpak
../base.nix
./base.nix
../packages.nix
];
@ -144,5 +144,7 @@
];
};
users.users.rae.shell = pkgs.fish;
virtualisation.docker.enable = true;
}