feat: docker and wine I think
This commit is contained in:
parent
32ca5407e3
commit
18cab7b936
|
@ -5,6 +5,8 @@
|
|||
./wakatime
|
||||
./xmonad
|
||||
|
||||
./wine.nix
|
||||
./docker.nix
|
||||
./misc.nix
|
||||
./locale.nix
|
||||
./memes.nix
|
||||
|
|
7
modules/applications/docker.nix
Normal file
7
modules/applications/docker.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
virtualisation.docker.enable = true;
|
||||
home-manager.users.adrielus.home.packages = with pkgs; [
|
||||
docker
|
||||
docker-compose
|
||||
];
|
||||
}
|
|
@ -50,6 +50,7 @@
|
|||
akonadi
|
||||
obs-studio # video recorder
|
||||
# blueman # bluetooth manager
|
||||
freesweep # minesweeper I can play w the keyboard.
|
||||
|
||||
# Nes emulators and stuff
|
||||
zsnes
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
{ ... }: {
|
||||
home-manager.users.adrielus.home.file.".wakatime.cfg".source = ./wakatime.cfg;
|
||||
{ pkgs, ... }: {
|
||||
home-manager.users.adrielus.home = {
|
||||
file.".wakatime.cfg".source = ./wakatime.cfg;
|
||||
packages = with pkgs; [ wakatime ];
|
||||
};
|
||||
}
|
||||
|
|
7
modules/applications/wine.nix
Normal file
7
modules/applications/wine.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
home-manager.users.adrielus.home.packages = with pkgs; [
|
||||
wineWowPackages.stable
|
||||
winetricks
|
||||
playonlinux
|
||||
];
|
||||
}
|
|
@ -29,6 +29,7 @@ in {
|
|||
brave = unstable.brave;
|
||||
ngrok = unstable.ngrok;
|
||||
vscodium = unstable.vscodium;
|
||||
docker-compose = unstable.docker-compose;
|
||||
deno = unstable.deno;
|
||||
discord-canary = unstable.discord-canary;
|
||||
dotnet-sdk = dotnet-sdk_3;
|
||||
|
|
|
@ -5,7 +5,7 @@ with import ../secrets.nix; {
|
|||
users.adrielus = {
|
||||
inherit hashedPassword;
|
||||
|
||||
extraGroups = [ "wheel" "networkmanager" "lp" ];
|
||||
extraGroups = [ "wheel" "networkmanager" "lp" "docker" ];
|
||||
isNormalUser = true;
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue