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"
},
"locked": {
"lastModified": 1715931372,
"narHash": "sha256-98qhqObzvcYFK2Uafy3gutaCNgsV6NMozzlrXlB2I8o=",
"lastModified": 1715951001,
"narHash": "sha256-GTFt0SfwKXPHYuaeY3nKKyYOc0EtAcmr9vP86xC7beY=",
"owner": "nix-community",
"repo": "nixvim",
"rev": "d844ac1a0656d64266c2c95aec7f529420915d68",
"rev": "3766e3633586ef9fac02f0347509171f0a4794b9",
"type": "github"
},
"original": {

View file

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

View file

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