fix lap config
This commit is contained in:
parent
2b6381ec57
commit
58f85834ff
5 changed files with 16 additions and 35 deletions
|
|
@ -1,32 +1,11 @@
|
||||||
{ lib, pkgs, inputs, nix-version, ... }:
|
{ lib, system, inputs, nix-version, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
|
./hardware-configuration.nix
|
||||||
# Modules
|
|
||||||
./boot.nix
|
./boot.nix
|
||||||
../../modules/dn-ca.nix
|
../../modules
|
||||||
../../modules/fonts.nix
|
|
||||||
../../modules/hardware.nix
|
|
||||||
../../modules/hyprland.nix
|
|
||||||
../../modules/internationalisation.nix
|
|
||||||
../../modules/misc.nix
|
|
||||||
../../modules/networking.nix
|
|
||||||
../../modules/nixsettings.nix
|
|
||||||
../../modules/packages.nix
|
|
||||||
../../modules/plymouth.nix
|
|
||||||
../../modules/polkit.nix
|
|
||||||
../../modules/programs.nix
|
|
||||||
../../modules/security.nix
|
|
||||||
../../modules/services.nix
|
|
||||||
../../modules/sound.nix
|
|
||||||
../../modules/theme.nix
|
|
||||||
../../modules/time.nix
|
|
||||||
../../modules/users.nix
|
|
||||||
../../modules/virtualization.nix
|
|
||||||
../../modules/wireguard.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Overrides
|
# Overrides
|
||||||
|
|
@ -35,7 +14,7 @@
|
||||||
|
|
||||||
system.stateVersion = nix-version;
|
system.stateVersion = nix-version;
|
||||||
home-manager = {
|
home-manager = {
|
||||||
backupFileExtension = "backup";
|
backupFileExtension = "hm-backup";
|
||||||
extraSpecialArgs = { inherit inputs system nix-version; };
|
extraSpecialArgs = { inherit inputs system nix-version; };
|
||||||
users = { "danny" = import ../../../home; };
|
users = { "danny" = import ../../../home; };
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,10 @@
|
||||||
imports = [
|
imports = [
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
./boot.nix
|
||||||
../../modules
|
../../modules
|
||||||
../../modules/nvidia.nix
|
../../modules/nvidia.nix
|
||||||
./boot.nix
|
../../modules/gaming.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Overrides
|
# Overrides
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./plymouth.nix # Boot splash
|
./plymouth.nix # Boot splash
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./gaming.nix
|
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
./internationalisation.nix
|
./internationalisation.nix
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,16 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
steam = {
|
||||||
|
enable = true;
|
||||||
|
extest.enable = true;
|
||||||
|
remotePlay.openFirewall = true;
|
||||||
|
dedicatedServer.openFirewall = true;
|
||||||
|
localNetworkGameTransfers.openFirewall = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
hardware.steam-hardware.enable = true;
|
hardware.steam-hardware.enable = true;
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,6 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
programs = {
|
programs = {
|
||||||
steam = {
|
|
||||||
enable = true;
|
|
||||||
extest.enable = true;
|
|
||||||
remotePlay.openFirewall = true;
|
|
||||||
dedicatedServer.openFirewall = true;
|
|
||||||
localNetworkGameTransfers.openFirewall = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
gnupg = {
|
gnupg = {
|
||||||
agent = {
|
agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue