Refactor
This commit is contained in:
parent
491aeb0c7e
commit
48b88ff3ca
7 changed files with 10 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
flake.modules.nixos."hosts/PW05CH3L".imports = with config.flake.modules.nixos; [
|
flake.modules.nixos."nixosConfigurations/PW05CH3L".imports = with config.flake.modules.nixos; [
|
||||||
workstation
|
workstation
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
flake.modules.nixos."hosts/PW05CH3L".home-manager.users.${config.flake.meta.owner.username} =
|
flake.modules.nixos."nixosConfigurations/PW05CH3L".home-manager.users.${config.flake.meta.owner.username} =
|
||||||
args: {
|
args: {
|
||||||
programs.tmux-sessionizer.searchPaths =
|
programs.tmux-sessionizer.searchPaths =
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
flake.modules.nixos."hosts/lemp11".imports = with config.flake.modules.nixos; [
|
flake.modules.nixos."nixosConfigurations/lemp11".imports = with config.flake.modules.nixos; [
|
||||||
pc
|
pc
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
flake.modules.nixos."hosts/t480".imports = with config.flake.modules.nixos; [
|
flake.modules.nixos."nixosConfigurations/t480".imports = with config.flake.modules.nixos; [
|
||||||
pc
|
pc
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
flake.modules.nixos."hosts/t480".home-manager.users.${config.flake.meta.owner.username} = args: {
|
flake.modules.nixos."nixosConfigurations/t480".home-manager.users.${config.flake.meta.owner.username} = args: {
|
||||||
programs.tmux-sessionizer.searchPaths =
|
programs.tmux-sessionizer.searchPaths =
|
||||||
let
|
let
|
||||||
inherit (args.config.xdg) userDirs;
|
inherit (args.config.xdg) userDirs;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
flake.modules.nixos."hosts/t490".imports = with config.flake.modules.nixos; [
|
flake.modules.nixos."nixosConfigurations/t490".imports = with config.flake.modules.nixos; [
|
||||||
pc
|
pc
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
lemp11 = mkNixosConfiguration rec {
|
lemp11 = mkNixosConfiguration rec {
|
||||||
hostname = "lemp11";
|
hostname = "lemp11";
|
||||||
|
|
||||||
modules = [ config.flake.modules.nixos."hosts/${hostname}" ];
|
modules = [ config.flake.modules.nixos."nixosConfigurations/${hostname}" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
nixedo = mkNixosConfiguration {
|
nixedo = mkNixosConfiguration {
|
||||||
|
@ -52,18 +52,18 @@
|
||||||
t480 = mkNixosConfiguration rec {
|
t480 = mkNixosConfiguration rec {
|
||||||
hostname = "t480";
|
hostname = "t480";
|
||||||
|
|
||||||
modules = [ config.flake.modules.nixos."hosts/${hostname}" ];
|
modules = [ config.flake.modules.nixos."nixosConfigurations/${hostname}" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
t490 = mkNixosConfiguration rec {
|
t490 = mkNixosConfiguration rec {
|
||||||
hostname = "t490";
|
hostname = "t490";
|
||||||
|
|
||||||
modules = [ config.flake.modules.nixos."hosts/${hostname}" ];
|
modules = [ config.flake.modules.nixos."nixosConfigurations/${hostname}" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
PW05CH3L = mkNixosConfiguration rec {
|
PW05CH3L = mkNixosConfiguration rec {
|
||||||
hostname = "PW05CH3L";
|
hostname = "PW05CH3L";
|
||||||
modules = [ config.flake.modules.nixos."hosts/${hostname}" ];
|
modules = [ config.flake.modules.nixos."nixosConfigurations/${hostname}" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue