Compare commits

...

3 commits

Author SHA1 Message Date
2bfd9d2229 update 2024-05-17 16:39:02 +02:00
c57a4c4b7c setup basic virtualisation 2024-05-17 16:38:19 +02:00
21f2ba134a enable direnv 2024-05-17 16:37:59 +02:00
3 changed files with 16 additions and 7 deletions

View file

@ -255,11 +255,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1715931372, "lastModified": 1715951001,
"narHash": "sha256-98qhqObzvcYFK2Uafy3gutaCNgsV6NMozzlrXlB2I8o=", "narHash": "sha256-GTFt0SfwKXPHYuaeY3nKKyYOc0EtAcmr9vP86xC7beY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "d844ac1a0656d64266c2c95aec7f529420915d68", "rev": "3766e3633586ef9fac02f0347509171f0a4794b9",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -114,6 +114,10 @@
btop = { btop = {
enable = true; enable = true;
}; };
direnv = {
enable = true;
nix-direnv.enable = true;
};
fish = { fish = {
enable = true; enable = true;
loginShellInit = '' loginShellInit = ''

View file

@ -78,7 +78,7 @@
isNormalUser = true; isNormalUser = true;
name = "muhh"; name = "muhh";
description = "Markus Heurung"; description = "Markus Heurung";
extraGroups = [ "input" "networkmanager" "video" "wheel" ]; extraGroups = [ "libvirtd" "qemu-libvirtd" "audio" "input" "networkmanager" "video" "wheel" ];
shell = pkgs.fish; shell = pkgs.fish;
linger = true; linger = true;
}; };
@ -114,9 +114,14 @@
light.enable = true; light.enable = true;
sway.enable = true; sway.enable = true;
}; };
virtualisation.podman = { virtualisation = {
enable = true; libvirtd = {
dockerCompat = true; enable = true;
};
podman = {
enable = true;
dockerCompat = true;
};
}; };
xdg.portal.wlr.enable = true; xdg.portal.wlr.enable = true;