giirl whatever

This commit is contained in:
tulg 2025-10-24 22:18:12 +03:00
parent 1b6c6967d9
commit cc9dbac99e
2 changed files with 9 additions and 62 deletions

View file

@ -1,6 +1,4 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{
config,
pkgs,
@ -8,7 +6,6 @@
...
}: {
imports = [
# Include the results of the hardware scan.
# ./disko.nix
./hardware-configuration.nix
./vfio.nix
@ -37,21 +34,9 @@
"--dpi-desync-ttl=8"
];
};
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "Europe/Istanbul";
# Select internationalisation properties.
services.getty.autologinUser = "tulg";
programs.hyprland = {
enable = true;
xwayland.enable = true;
@ -60,6 +45,7 @@
users.users.tulg = {
isNormalUser = true;
description = "Tulga";
initialPassword = "fuckyou";
extraGroups = ["networkmanager" "wheel" "libvirtd"];
packages = with pkgs; [];
};