-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.nix
209 lines (186 loc) · 4.29 KB
/
configuration.nix
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# 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, ... }:
{
# List packages installed in system profile. To search, run: `nix search wget`
environment.systemPackages = with pkgs; [
## Dev
#ide
vim
neovim
#dev tools
git
tmux
docker
kanata
#languages
gcc
rustup
nodejs
nodePackages.pnpm
jdk
(python3.withPackages (python-pkgs: with python-pkgs; [
debugpy
requests
regex
]))
dotnet-sdk
postgresql
zig
## Misselanous
#files
lf
tree
zoxide
fzf
fd
#dotfiles
stow
#shell
kitty
zsh
oh-my-posh
atuin
fastfetch
wl-clipboard
nixos-shell
#app gui
discord
libreoffice-qt
obs-studio
rofi # app launcher
pinta # litteraly paint.net for linux
#app cli
pass
gh # github cli
glow # markdown viewer
slides # markdown - powerpoint viewer
tldr
zip
unzip
## Hyprland
fuzzel
#lock screen
wlogout
swaylock-effects
hypridle
#sound
playerctl
pamixer # audio manager
#screen
waybar
grim
slurp
brightnessctl
## Dependencies
openssl
];
fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [
"JetBrainsMono"
]; })
];
# Program config
programs = {
firefox.enable = true;
zsh.enable = true;
};
services = {
kanata = {
enable = true;
keyboards.internalKeyboard = {
extraDefCfg = "process-unmapped-keys yes";
config = (builtins.readFile /home/rignchen/.config/kanata/kanata.kbd );
};
};
postgresql = {
enable = true;
ensureDatabases = [ "mydatabase" ];
authentication = pkgs.lib.mkOverride 10 ''
#type database DBuser auth-method
local all all trust
'';
};
};
# Define a user account. Don't forget to set a password with ‘passwd’.
users.users.rignchen = {
shell = pkgs.zsh;
isNormalUser = true;
description = "rignchen";
extraGroups = [
"networkmanager"
"wheel"
"docker"
];
packages = with pkgs; [];
};
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
virtualisation.docker.enable = true;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Desktop Environment
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
# Set your time zone.
time.timeZone = "Europe/Zurich";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "fr_CH.UTF-8";
LC_IDENTIFICATION = "fr_CH.UTF-8";
LC_MEASUREMENT = "fr_CH.UTF-8";
LC_MONETARY = "fr_CH.UTF-8";
LC_NAME = "fr_CH.UTF-8";
LC_NUMERIC = "fr_CH.UTF-8";
LC_PAPER = "fr_CH.UTF-8";
LC_TELEPHONE = "fr_CH.UTF-8";
LC_TIME = "fr_CH.UTF-8";
};
# Configure keymap
services.xserver.xkb = {
layout = "ch";
variant = "fr_nodeadkeys";
};
# Enable experimental features
nix.settings.experimental-features = [ "nix-command" ];
# Enable sound with pipewire.
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
# Ssh & Gpg
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
services.openssh.enable = true;
# Enable networking
networking.networkmanager.enable = true;
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable the X11 windowing system.
services.xserver.enable = true;
# Configure console keymap
console.keyMap = "sg";
# Enable CUPS to print documents.
services.printing.enable = true;
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
system.stateVersion = "24.05"; # Before changing this value read the documentation for this option (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
}