-
Notifications
You must be signed in to change notification settings - Fork 8
/
configuration.nix##hostname.martta
48 lines (48 loc) · 1.2 KB
/
configuration.nix##hostname.martta
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
{ lib, config, pkgs, ... }:
{
imports = [
./common.nix
];
system.stateVersion = "21.05";
networking.hostName = "martta";
boot.plymouth.enable = true;
boot.loader.systemd-boot.enable = true;
# Bigger font during boot time and in virtual terminals
console.font = "solar24x32";
#boot.loader.grub = {
# enable = true;
# device = "/dev/nvme0n1";
#};
nixpkgs.config.allowUnfree = true;
users.predefinedUsers = {
jluttine = [ "wheel" ];
meri = [ "wheel" ];
};
services = {
syncthing = {
enable = true;
user = "meri";
group = "users";
dataDir = "/home/meri/.syncthing/folders";
configDir = "/home/meri/.syncthing/config";
};
xserver = {
displayManager.sddm.enable = true;
# Adjust bigger size for the greeter
displayManager.sddm.settings = {
X11.ServerArguments = "-nolisten tcp -dpi 128";
};
desktopManager.plasma5.enable = true;
};
};
programs = {
cryptos.enable = true;
};
environment.systemPackages = with pkgs; [
# Add any desired applications here. Use, for instance,
# https://search.nixos.org/packages to search for package names.
zoom-us
pinentry-qt
audacity
];
}