diff options
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/configuration.nix b/configuration.nix index fdac68a..f128856 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,7 +1,7 @@ -{ pkgs, lib, ... }: +{ config, pkgs, lib, ... }: let - user = "sinan"; + user = config.passthru.user; in { imports = [ @@ -9,6 +9,8 @@ in ./hosts/cez.nix ]; + passthru.user = "sinan"; + # boot boot = { tmp.useTmpfs = true; @@ -35,16 +37,8 @@ in geoipWithDatabase dig nnn - shellcheck ffmpeg - gnumake rtorrent - nixos-option - pass - gcc - lua - luajit - neofetch ps_mem brightnessctl ]; @@ -63,13 +57,10 @@ in unzip bc file - openssl git htop curl neovim - wget - tree ]; }; system.stateVersion = "23.05"; |