Added boot.nix

This commit is contained in:
2024-09-06 20:03:42 +02:00
parent ef3c24b031
commit bbe296b136
2 changed files with 19 additions and 7 deletions

View File

@@ -1,17 +1,14 @@
{ config, pkgs, ... }: { pkgs, ... }:
{ {
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./modules/boot.nix
./modules/nvidia.nix ./modules/nvidia.nix
./modules/services.nix ./modules/services.nix
./modules/styling.nix ./modules/styling.nix
]; ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit = 10;
nix.gc = { nix.gc = {
automatic = true; automatic = true;
dates = "weekly"; dates = "weekly";
@@ -27,7 +24,6 @@
}; };
}; };
boot.initrd.luks.devices."luks-332a07bd-65fb-4d91-91ba-fe3f594063b1".device = "/dev/disk/by-uuid/332a07bd-65fb-4d91-91ba-fe3f594063b1";
networking.hostName = "nixos"; # Define your hostname. networking.hostName = "nixos"; # Define your hostname.
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
@@ -62,7 +58,7 @@
users.users.r3ddy = { users.users.r3ddy = {
isNormalUser = true; isNormalUser = true;
description = "Patrick Canal"; description = "Patrick Canal";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" "docker" ];
shell = pkgs.fish; shell = pkgs.fish;
}; };
@@ -78,6 +74,8 @@
# CLI utils # CLI utils
appimage-run appimage-run
cmake cmake
distrobox
docker
fish fish
fzf fzf
gcc gcc
@@ -117,6 +115,13 @@
programs.steam.enable = true; programs.steam.enable = true;
programs.steam.remotePlay.openFirewall = true; programs.steam.remotePlay.openFirewall = true;
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
system.stateVersion = "24.05"; # Did you read the comment? system.stateVersion = "24.05"; # Did you read the comment?
} }

7
modules/boot.nix Normal file
View File

@@ -0,0 +1,7 @@
{ ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit = 10;
boot.initrd.luks.devices."luks-332a07bd-65fb-4d91-91ba-fe3f594063b1".device = "/dev/disk/by-uuid/332a07bd-65fb-4d91-91ba-fe3f594063b1";
}