Added local configurations
This commit is contained in:
parent
4a3509f4c0
commit
ad0441e822
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
local-nixos.nix
|
|
@ -10,6 +10,7 @@ in {
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
/etc/nixos/hardware-configuration.nix
|
||||
./local-nixos.nix
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
@ -27,10 +28,6 @@ in {
|
|||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
services.blueman.enable = true;
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/Stockholm";
|
||||
|
||||
|
@ -55,8 +52,6 @@ in {
|
|||
xkbVariant = "";
|
||||
};
|
||||
|
||||
services.xserver.enable = true;
|
||||
services.xserver.displayManager.lightdm.enable = true;
|
||||
programs.hyprland.enable = true;
|
||||
|
||||
# Configure console keymap
|
||||
|
|
Loading…
Reference in a new issue