don't use sternchen anymore
This commit is contained in:
parent
47f717392a
commit
2e9bf75dab
2 changed files with 26 additions and 29 deletions
|
@ -61,9 +61,6 @@ jobs:
|
||||||
- name: nix build chungus
|
- name: nix build chungus
|
||||||
run: nix build .#nixosConfigurations.chungus.config.system.build.toplevel
|
run: nix build .#nixosConfigurations.chungus.config.system.build.toplevel
|
||||||
|
|
||||||
- name: nix build sternchen
|
|
||||||
run: nix build .#nixosConfigurations.sternchen.config.system.build.toplevel
|
|
||||||
|
|
||||||
- name: nix build usbstick
|
- name: nix build usbstick
|
||||||
run: nix build .#nixosConfigurations.usbstick.config.system.build.toplevel
|
run: nix build .#nixosConfigurations.usbstick.config.system.build.toplevel
|
||||||
|
|
||||||
|
|
52
flake.nix
52
flake.nix
|
@ -368,32 +368,32 @@
|
||||||
|
|
||||||
machines = {
|
machines = {
|
||||||
|
|
||||||
sternchen = clanSetup {
|
# sternchen = clanSetup {
|
||||||
name = "sternchen";
|
# name = "sternchen";
|
||||||
host = "sternchen.bear";
|
# host = "sternchen.bear";
|
||||||
#host = "192.168.178.25";
|
# #host = "192.168.178.25";
|
||||||
modules = [
|
# modules = [
|
||||||
nixos-hardware.nixosModules.lenovo-thinkpad-x220
|
# nixos-hardware.nixosModules.lenovo-thinkpad-x220
|
||||||
homeManagerModules
|
# homeManagerModules
|
||||||
stylixModules
|
# stylixModules
|
||||||
{ home-manager.users.mainUser.gui.enable = true; }
|
# { home-manager.users.mainUser.gui.enable = true; }
|
||||||
{
|
# {
|
||||||
home-manager.users.mainUser = import ./homes/tina;
|
# home-manager.users.mainUser = import ./homes/tina;
|
||||||
home-manager.users.root = import ./homes/root;
|
# home-manager.users.root = import ./homes/root;
|
||||||
}
|
# }
|
||||||
# todo : strange overrides, this should be an option kinda an be changed on another level (the homes/<name> folders or something)
|
# # todo : strange overrides, this should be an option kinda an be changed on another level (the homes/<name> folders or something)
|
||||||
({ lib, ... }: {
|
# ({ lib, ... }: {
|
||||||
home-manager.sharedModules = [
|
# home-manager.sharedModules = [
|
||||||
{
|
# {
|
||||||
programs.atuin.enable = lib.mkForce false;
|
# programs.atuin.enable = lib.mkForce false;
|
||||||
}
|
# }
|
||||||
];
|
# ];
|
||||||
})
|
# })
|
||||||
{
|
# {
|
||||||
clan.core.machineDescription = "LaLaptop";
|
# clan.core.machineDescription = "LaLaptop";
|
||||||
}
|
# }
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
|
|
||||||
cream = clanSetup {
|
cream = clanSetup {
|
||||||
name = "cream";
|
name = "cream";
|
||||||
|
|
Loading…
Reference in a new issue