114 lines
3.7 KiB
Nix
114 lines
3.7 KiB
Nix
# 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, lib, pkgs, ... }:
|
||
|
||
{
|
||
|
||
imports = [ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
|
||
(import ./disko.nix { device1 = "/dev/nvme0n1"; device2 = "/dev/nvme1n1"; device3 = "/dev/sda"; })
|
||
];
|
||
|
||
config = {
|
||
|
||
services = {
|
||
xserver = {
|
||
enable = false;
|
||
videoDrivers = ["nvidia"];
|
||
};
|
||
displayManager = {
|
||
enable = false;
|
||
defaultSession = "hyprland";
|
||
autoLogin = {
|
||
enable = true;
|
||
user = "nathan";
|
||
};
|
||
};
|
||
pulseaudio.enable = false;
|
||
|
||
hardware.openrgb = {
|
||
enable = true;
|
||
motherboard = "amd";
|
||
};
|
||
};
|
||
|
||
hardware.nvidia = {
|
||
open = true;
|
||
modesetting.enable = true;
|
||
nvidiaPersistenced = true;
|
||
};
|
||
|
||
sops = {
|
||
age.keyFile = "/var/lib/sops/age/keys.txt";
|
||
defaultSopsFile = ./secrets.yaml;
|
||
defaultSopsFormat = "yaml";
|
||
|
||
secrets = {
|
||
"nathan/pass" = {
|
||
neededForUsers = true;
|
||
};
|
||
};
|
||
};
|
||
|
||
sysconfig = {
|
||
|
||
docker.nvidia = true;
|
||
|
||
users = {
|
||
nathan = {
|
||
isSuperuser = true;
|
||
extraGroups = [ "networkmanager" "docker" ];
|
||
ssh.keys = [
|
||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAsU69CxfQk58CvItPN426h5Alnpb60SH37wet97Vb57 nathan@laptop"
|
||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEnUhN2uHwAJF/SLRX3wlGRmfhV3zpP88JQAYB+gh8jW nathan@localhost"
|
||
];
|
||
shell = pkgs.zsh;
|
||
hashedPasswordFile = config.sops.secrets."nathan/pass".path;
|
||
home-manager = {
|
||
enable = true;
|
||
standalone = false;
|
||
extraModules = [
|
||
{
|
||
homeconfig = {
|
||
minimal = false;
|
||
hyprland.enable = false;
|
||
hyprlock.enable = false;
|
||
wal.enable = true;
|
||
mpd.enable = true;
|
||
hyprpanel.enable = false;
|
||
calcurse.enable = true;
|
||
rofi.enable = false;
|
||
firefox.enable = false;
|
||
git.enable = true;
|
||
nh.enable = true;
|
||
};
|
||
|
||
services.hypridle.enable = lib.mkForce false;
|
||
|
||
home.packages = with pkgs; [
|
||
wayvnc
|
||
openrgb
|
||
];
|
||
}
|
||
];
|
||
};
|
||
};
|
||
};
|
||
};
|
||
|
||
|
||
|
||
# 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. It‘s perfectly fine and recommended to leave
|
||
# 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 = "23.05"; # Did you read the comment?
|
||
};
|
||
|
||
}
|