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