blob: 5a6a789236533d39d33116c69fcd54619e96c487 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
{ config, lib, pkgs, inputs, ... }:
{
imports =
[
./hardware-configuration.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.consoleMode = "max";
boot.loader.efi.canTouchEfiVariables = true;
nixpkgs.config.allowUnfree = true;
networking.hostName = "form";
networking.networkmanager.enable = true;
time.timeZone = "America/New_York";
console = {
useXkbConfig = true; # use xkb.options in tty.
};
services.xserver.xkb.layout = "us";
services.xserver.xkb.variant = "colemak_dh,";
services.pipewire = {
enable = true;
alsa.enable = true;
wireplumber.enable = true;
pulse.enable = true;
};
services.libinput.enable = true;
programs.zsh = {
enable = true;
ohMyZsh.enable = true;
};
documentation.dev.enable = true;
users.users.stefan = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "gamemode" ]; # Enable ‘sudo’ for the user.
packages = with pkgs; [
unzip
tree
discord-ptb
ungoogled-chromium
osu-lazer-bin
xfce.thunar
];
shell = pkgs.zsh;
};
#programs.firefox.enable = true;
programs.foot.enable = true;
programs.sway.enable = true;
programs.steam.enable = true;
security = {
polkit.enable = true;
rtkit.enable = true;
doas = {
enable = true;
extraRules = [{
users = ["stefan"];
# keepEnv = true;
persist = true;
}];
};
};
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd 'sway --unsupported-gpu'";
user = "greeter";
};
};
};
environment.systemPackages = with pkgs; [
zsh
neovim
wl-clipboard
wmenu
gnupg
pinentry-qt
btop
man-pages
man-pages-posix
wineWowPackages.staging
winetricks
wineWowPackages.waylandFull
];
environment.pathsToLink = [ "/share/zsh" ];
# List services that you want to enable:
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
hardware.graphics.enable = true;
services.xserver.videoDrivers = ["nvidia"];
hardware.nvidia = {
modesetting.enable = true;
open = true;
nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.latest;
};
nix = {
settings.experimental-features = [ "nix-command" "flakes" ];
};
system.stateVersion = "24.11";
}
|