Added: Changed Hyprlock

This commit is contained in:
2025-04-09 00:02:08 +02:00
parent 7115f3c1dc
commit 21787c4516
2 changed files with 92 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports =
@@ -37,16 +37,16 @@
networking = {
hostName = "nix-desktop";
networkmanager.enable = true;
#useDHCP = true;
#useDHCP = lib.mkForce true;
#dhcpcd.enable = true;
/*interfaces = {
interfaces = {
eno1.ipv4.addresses = [{
address = "192.168.2.40";
prefixLength = 24;
}];
};*/
};
/*defaultGateway = {
defaultGateway = {
address = "192.168.2.1";
interface = "eno1";
};
@@ -55,7 +55,7 @@
"192.168.2.50"
"1.1.1.1"
"8.8.8.8"
];*/
];
};
hardware.graphics.enable = true;