feat: initial commit

add initial NixOS Configuration to git
This commit is contained in:
Emma Thorpe
2025-03-16 15:30:13 +00:00
commit 44da0fbd49
3 changed files with 58 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ config, pkgs, lib, ... }:
{
users.users.emmathorpe = {
isNormalUser = true;
home = "/home/emmathorpe";
description = "Emma Thorpe";
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
packages = lib.mkIf (config.features.swayDesktop.enable == true) [
pkgs.discord
];
};
programs.firefox = lib.mkIf(config.features.swayDesktop.enable == true) {
enable = true;
};
}