1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-30 22:53:37 +00:00
This commit is contained in:
Rae 5e 2025-01-19 23:48:45 -05:00
parent c9d5d2005b
commit b11af1c6b1
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE

View file

@ -4,7 +4,7 @@
../packages.nix
];
nix.settings.experimental-features = ["nix-command" "flakes"];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs = {
config.allowUnfree = true;
overlays = import ../overlays.nix inputs;
@ -12,6 +12,13 @@
networking.networkmanager.enable = true;
users.users.rae = {
isNormalUser = true;
extraGroups = [ "wheel" "docker" ];
hashedPassword = "$y$j9T$YPq.Kl8rss1JmJ5Vg6cHE/$2kdfzCkkhaO.I4u714EQnS/ZFert5byisiRVxtC.9G2";
shell = pkgs.fish;
};
programs = {
dconf.enable = true;
firefox.enable = true;
@ -87,18 +94,16 @@
};
};
hardware = {
bluetooth = {
enable = true;
powerOnBoot = true;
};
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
xdg.portal = {
enable = true;
config = {
common = {
default = [ "gtk "];
default = [ "gtk" ];
};
};
extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
@ -130,11 +135,4 @@
};
virtualisation.docker.enable = true;
users.users.rae = {
isNormalUser = true;
extraGroups = [ "wheel" "docker" ];
hashedPassword = "$y$j9T$YPq.Kl8rss1JmJ5Vg6cHE/$2kdfzCkkhaO.I4u714EQnS/ZFert5byisiRVxtC.9G2";
shell = pkgs.fish;
};
}