diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2025-02-06 22:24:50 +0000 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2025-02-06 22:24:50 +0000 |
commit | 8a3a0c2cabba7186c8db4006c9867b32ef352b56 (patch) | |
tree | dfd7b7fd0b698ec1a5ee0417d11ada381136ce5e /configuration | |
parent | 3d5081b8ba0e31a152ea69458601597dce8ee2c8 (diff) |
braab
Diffstat (limited to 'configuration')
-rw-r--r-- | configuration/core/users.nix | 17 | ||||
-rw-r--r-- | configuration/snorlax/default.nix | 3 | ||||
-rw-r--r-- | configuration/tarrel/default.nix | 2 | ||||
-rw-r--r-- | configuration/work/default.nix | 2 |
4 files changed, 22 insertions, 2 deletions
diff --git a/configuration/core/users.nix b/configuration/core/users.nix index 26703a0..22f9e61 100644 --- a/configuration/core/users.nix +++ b/configuration/core/users.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, inputs, ... }: { programs.zsh.enable = true; @@ -28,4 +28,19 @@ LC_TELEPHONE = "nl_NL.UTF-8"; LC_TIME = "nl_NL.UTF-8"; }; + + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.extraSpecialArgs = { inherit inputs; }; + home-manager.users.jras = { + imports = [ ../home-manager/core ]; + + home.username = "jras"; + home.homeDirectory = "/home/jras"; + + programs.git = { + userName = "Jasper Ras"; + userEmail = "jaspert.ras@gmail.com"; + }; + }; } diff --git a/configuration/snorlax/default.nix b/configuration/snorlax/default.nix index ee9755e..61e5902 100644 --- a/configuration/snorlax/default.nix +++ b/configuration/snorlax/default.nix @@ -7,8 +7,9 @@ ../core ]; - networking.hostName = "snorlax"; system.stateVersion = "24.11"; + networking.hostName = "snorlax"; + time.timeZone = "Europe/Amsterdam"; programs.mtr.enable = true; services.openssh = { diff --git a/configuration/tarrel/default.nix b/configuration/tarrel/default.nix index f8519a7..9741d28 100644 --- a/configuration/tarrel/default.nix +++ b/configuration/tarrel/default.nix @@ -13,6 +13,8 @@ networking.hostName = "tarrel"; networking.networkmanager.enable = true; + time.timeZone = "Europe/Amsterdam"; + users.users.jras.extraGroups = [ "networkmanager" ]; boot.loader.systemd-boot.enable = true; diff --git a/configuration/work/default.nix b/configuration/work/default.nix index f17ac74..25c3ef0 100644 --- a/configuration/work/default.nix +++ b/configuration/work/default.nix @@ -12,6 +12,8 @@ users.users.jras.extraGroups = [ "networkmanager" "docker" ]; + time.timeZone = "Europe/Amsterdam"; + age.secrets.ghostnet-cert.file = ../../secrets/ghostnet-cert.age; age.secrets.ghostnet-key.file = ../../secrets/ghostnet-key.age; age.secrets.ghostnet-ca.file = ../../secrets/ghostnet-ca.age; |