feat(fighter): add terminal home to fighter
This commit is contained in:
31
flake.nix
31
flake.nix
@@ -101,20 +101,6 @@
|
||||
./style.nix
|
||||
];
|
||||
};
|
||||
"infiltrator" = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
pkgs-unstable = import nixpkgs-unstable {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
config.allowUnfreePredicate = _: true;
|
||||
};
|
||||
inherit inputs self;
|
||||
};
|
||||
modules = [
|
||||
./hosts/infriltrator/configuration.nix
|
||||
];
|
||||
};
|
||||
"fighter" = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
@@ -127,6 +113,23 @@
|
||||
};
|
||||
modules = [
|
||||
./hosts/fighter/configuration.nix
|
||||
./home/terminal/configuration.nix
|
||||
inputs.stylix.nixosModules.stylix
|
||||
./style.nix
|
||||
];
|
||||
};
|
||||
"infiltrator" = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
pkgs-unstable = import nixpkgs-unstable {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
config.allowUnfreePredicate = _: true;
|
||||
};
|
||||
inherit inputs self;
|
||||
};
|
||||
modules = [
|
||||
./hosts/infriltrator/configuration.nix
|
||||
];
|
||||
};
|
||||
"lost-home" = nixpkgs.lib.nixosSystem rec {
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
self,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
@@ -13,16 +12,6 @@
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
# Users
|
||||
users.users."guz" = {
|
||||
extraGroups = ["wheel" "guz"];
|
||||
isNormalUser = true;
|
||||
password = "1313";
|
||||
# hashedPasswordFile = builtins.toString config.sops.secrets."guz/password".path;
|
||||
shell = self.packages.${pkgs.stdenv.hostPlatform.system}.devkit.zsh;
|
||||
};
|
||||
users.groups."guz" = {};
|
||||
|
||||
# GnuPG keyring
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
|
||||
Reference in New Issue
Block a user