1
0

hosts/krypton,configuration/desktop: setup basic gnome environment

This commit is contained in:
2023-06-19 22:20:47 +02:00
parent b481941eb2
commit 417a739547
7 changed files with 101 additions and 1 deletions

View File

@@ -4,6 +4,10 @@
imports =
[
./hardware-configuration.nix
../../configuration/desktop
./programs.nix
];
# Use the systemd-boot EFI boot loader.

View File

@@ -0,0 +1,23 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
firefox-wayland
];
users.users.clerie.packages = with pkgs; [
keepassxc
vlc
mumble
element-desktop
signal-desktop
dino
];
services.syncthing = {
enable = true;
user = "clerie";
dataDir = "/home/clerie";
configDir = "/home/clerie/.config/syncthing";
};
}