diff --git a/.gitignore b/.gitignore index b2be92b..1cd791b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -result +result/ diff --git a/flake.nix b/flake.nix index 31867e3..f9c00de 100644 --- a/flake.nix +++ b/flake.nix @@ -64,16 +64,6 @@ ]; }; - dionysos = nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - specialArgs = { - inherit specialArgs; - }; - modules = [ - - ./hosts/dionysos/configuration.nix - ]; - }; }; isos = { @@ -106,12 +96,6 @@ inherit specialArgs; }; modules = [ - ( - { ... }: - { - nix.registry.nixpkgs.flake = nixpkgs; - } - ) ./hosts/dionysos/configuration.nix ]; format = "proxmox"; diff --git a/hosts/dionysos/configuration.nix b/hosts/dionysos/configuration.nix index 56a94e0..cb3f10a 100644 --- a/hosts/dionysos/configuration.nix +++ b/hosts/dionysos/configuration.nix @@ -1,11 +1,4 @@ -{ - config, - pkgs, - ... -}: -let - username = "harry123"; -in +{ config, pkgs, ... }: { environment.systemPackages = with pkgs; [ weechat @@ -17,17 +10,4 @@ in enable = true; clock24 = true; }; - - system.stateVersion = "24.05"; - - users.users.${username} = { - isNormalUser = true; - - openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA8sdToNavEQv7PTMJ97HIGM6UlChwGS3x9O8hFilzui harryh@ik.me" - ]; - }; - - users.users.${username}.initialHashedPassword = "$y$j9T$s4isXqWcg4N8TEPjmj0fD/$zog2cpUwstnvwDnQsFmH3br/WAeD2Uu/L7ePr00cKkA"; - environment.variables.EDITOR = "nvim"; }