1
Fork 0

feat: docker and wine I think

This commit is contained in:
Matei Adriel 2020-10-30 13:37:31 +02:00
parent 32ca5407e3
commit 18cab7b936
7 changed files with 24 additions and 3 deletions

View file

@ -5,6 +5,8 @@
./wakatime
./xmonad
./wine.nix
./docker.nix
./misc.nix
./locale.nix
./memes.nix

View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
virtualisation.docker.enable = true;
home-manager.users.adrielus.home.packages = with pkgs; [
docker
docker-compose
];
}

View file

@ -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

View file

@ -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 ];
};
}

View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs; [
wineWowPackages.stable
winetricks
playonlinux
];
}

View file

@ -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;

View file

@ -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;
};