mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 14:41:20 +00:00
Move Spotify to system and add rootless Docker
This commit is contained in:
parent
3afbfbb489
commit
c163126be6
2 changed files with 15 additions and 4 deletions
|
@ -24,5 +24,6 @@ in
|
||||||
'')
|
'')
|
||||||
dig
|
dig
|
||||||
caligula
|
caligula
|
||||||
|
spotify
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
users.users.bart = {
|
users.users.bart = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Bart van der Braak";
|
description = "Bart van der Braak";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
vscodium
|
vscodium
|
||||||
thunderbird
|
thunderbird
|
||||||
|
@ -17,16 +17,19 @@
|
||||||
opentofu
|
opentofu
|
||||||
python3
|
python3
|
||||||
gnumake
|
gnumake
|
||||||
spotify
|
|
||||||
_1password-gui
|
_1password-gui
|
||||||
nodejs_22
|
# nodejs_22
|
||||||
corepack_22
|
# corepack_22
|
||||||
azure-cli
|
azure-cli
|
||||||
sops
|
sops
|
||||||
blender
|
blender
|
||||||
|
nixfmt-rfc-style
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Enable discovery of Google Cast and Spotify Connect devices
|
||||||
|
networking.firewall.allowedUDPPorts = [ 5353 ];
|
||||||
|
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
# Workaround for electron dependency in Logseq
|
# Workaround for electron dependency in Logseq
|
||||||
"electron-27.3.11"
|
"electron-27.3.11"
|
||||||
|
@ -44,4 +47,11 @@
|
||||||
# GPG agent configuration
|
# GPG agent configuration
|
||||||
programs.gnupg.agent.enable = true;
|
programs.gnupg.agent.enable = true;
|
||||||
programs.gnupg.dirmngr.enable = true;
|
programs.gnupg.dirmngr.enable = true;
|
||||||
|
|
||||||
|
# Add Docker support
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
virtualisation.docker.rootless = {
|
||||||
|
enable = true;
|
||||||
|
setSocketVariable = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue