mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 19:52:52 +00:00
fixi?
This commit is contained in:
parent
c60ac24dc4
commit
b240bfcca5
5 changed files with 20 additions and 20 deletions
|
@ -307,7 +307,7 @@
|
||||||
# '';
|
# '';
|
||||||
#};
|
#};
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/hypr".source = ./config/hypr;
|
".config/hypr".source = ../../config/hypr;
|
||||||
};
|
};
|
||||||
|
|
||||||
# You can also manage environment variables but you will have to manually
|
# You can also manage environment variables but you will have to manually
|
||||||
|
|
|
@ -3,19 +3,19 @@
|
||||||
./bluetooth
|
./bluetooth
|
||||||
./bootloader
|
./bootloader
|
||||||
./display-manager
|
./display-manager
|
||||||
./editor
|
#./editor
|
||||||
./environment
|
./environment
|
||||||
./filesystem
|
./filesystem
|
||||||
./fonts
|
./fonts
|
||||||
./hardware
|
#./hardware
|
||||||
./hyprland
|
#./hyprland
|
||||||
./kernel
|
./kernel
|
||||||
./locale
|
./locale
|
||||||
./networking
|
#./networking
|
||||||
./packages
|
./packages
|
||||||
./sound
|
#./sound
|
||||||
./ssh
|
#./ssh
|
||||||
./virtualisation
|
#./virtualization
|
||||||
];
|
];
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
@ -47,11 +47,11 @@
|
||||||
# enable modules
|
# enable modules
|
||||||
bluetooth.enable = lib.mkDefault true;
|
bluetooth.enable = lib.mkDefault true;
|
||||||
display-manager.enable = lib.mkDefault true;
|
display-manager.enable = lib.mkDefault true;
|
||||||
editor = lib.mkDefault true;
|
#editor = lib.mkDefault true;
|
||||||
hardware = lib.mkDefault true;
|
#hardware = lib.mkDefault true;
|
||||||
hyprland = lib.mkDefault false;
|
#hyprland = lib.mkDefault true;
|
||||||
networking = lib.mkDefault true;
|
#networking = lib.mkDefault true;
|
||||||
sound = lib.mkDefault true;
|
#sound = lib.mkDefault true;
|
||||||
ssh = lib.mkDefault true;
|
#ssh = lib.mkDefault true;
|
||||||
virtualisation = lib.mkDefault true;
|
#virtualization = lib.mkDefault true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
variant = "";
|
variant = "";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
wayland.enable = true;
|
#wayland.enable = true;
|
||||||
};
|
};
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
dunst
|
dunst
|
||||||
|
|
|
@ -10,6 +10,6 @@
|
||||||
"net.ipv4.conf.all.forwarding" = true;
|
"net.ipv4.conf.all.forwarding" = true;
|
||||||
"net.ipv4.conf.default.forwarding" = true;
|
"net.ipv4.conf.default.forwarding" = true;
|
||||||
};
|
};
|
||||||
hardware.firmware = with pkgs; [firmwareLinuxNonfree];
|
|
||||||
};
|
};
|
||||||
|
hardware.firmware = with pkgs; [firmwareLinuxNonfree];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
libs,
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
options = {
|
options = {
|
||||||
virtualisation.enable = lib.mkEnableOption "enable virtualisation";
|
virtualization.enable = lib.mkEnableOption "enable virtualization";
|
||||||
};
|
};
|
||||||
config = lib.mkIf config.virtualisation.enable {
|
config = lib.mkIf config.virtualization.enable {
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
docker.enable = true;
|
docker.enable = true;
|
||||||
incus.enable = true;
|
incus.enable = true;
|
Loading…
Reference in a new issue