This commit is contained in:
FabricSoul 2025-01-02 14:53:08 -05:00
parent 8450ea8068
commit 5dc48ef819
5 changed files with 1132 additions and 78 deletions

View file

@ -1,15 +1,16 @@
# 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, ... }:
{
config,
pkgs,
...
}: {
nix.settings.experimental-features = ["nix-command" "flakes"];
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
@ -41,8 +42,8 @@
users.users.fabric = {
isNormalUser = true;
description = "fabric";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [];
extraGroups = ["networkmanager" "wheel" "docker"];
shell = pkgs.zsh;
};
# Allow unfree packages
@ -52,15 +53,16 @@
# $ nix search wget
environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
# wget
greetd.greetd
greetd.tuigreet
xorg.xinit
libinput
libnotify
kitty
zsh
];
fonts.packages = with pkgs; [ nerdfonts ];
fonts.packages = with pkgs; [nerdfonts];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
@ -75,39 +77,39 @@
# Enable the OpenSSH daemon.
services.openssh.enable = true;
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time ";
user = "fabric";
};
};
};
services.xserver = {
enable = true;
windowManager.i3.enable = true;
displayManager.startx.enable = true;
libinput.enable = true;
videoDrivers = ["nvidia"];
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time ";
user = "fabric";
};
};
};
services.displayManager = {
defaultSession = "none+i3";
defaultSession = "hyprland";
};
services.xserver.videoDrivers = ["nvidia"];
hardware = {
graphics = {
enable = true;
};
nvidia = {
modesetting.enable = true;
powerManagement.enable = false;
powerManagement.finegrained = false;
open = false;
nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.stable;
};
graphics = {
enable = true;
};
programs.steam.enable = true;
nvidia = {
modesetting.enable = true;
powerManagement.enable = false;
powerManagement.finegrained = false;
open = false;
nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.stable;
};
};
programs = {
steam.enable = true;
hyprland.enable = true;
zsh.enable = true;
};
virtualisation.docker.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
@ -117,9 +119,8 @@
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
#this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.11"; # Did you read the comment?
}