Fix some stuff the refactoring broke
This commit is contained in:
parent
0ec36c1c7e
commit
1c3dcc5a01
5 changed files with 17 additions and 15 deletions
23
flake.nix
23
flake.nix
|
@ -74,6 +74,8 @@
|
||||||
{
|
{
|
||||||
home.username = "lauren_lagarde";
|
home.username = "lauren_lagarde";
|
||||||
home.homeDirectory = "/home/lauren_lagarde";
|
home.homeDirectory = "/home/lauren_lagarde";
|
||||||
|
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
./home-manager/base.nix
|
./home-manager/base.nix
|
||||||
|
@ -149,9 +151,12 @@
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
networking.hostName = "living-room";
|
networking.hostName = "living-room";
|
||||||
|
|
||||||
system.stateVersion = "25.05";
|
system.stateVersion = "25.05";
|
||||||
home-manager.users."lauren_lagarde".home.stateVersion = "25.05";
|
|
||||||
|
home-manager.users."lauren_lagarde" = {
|
||||||
|
home.stateVersion = "25.05";
|
||||||
|
imports = self.homeManagerModules."lauren_lagarde@living-room";
|
||||||
|
};
|
||||||
|
|
||||||
time.timeZone = "America/Chicago";
|
time.timeZone = "America/Chicago";
|
||||||
sops.defaultSopsFile = ./secrets.yaml;
|
sops.defaultSopsFile = ./secrets.yaml;
|
||||||
|
@ -173,9 +178,12 @@
|
||||||
{
|
{
|
||||||
networking.hostName = "bastion";
|
networking.hostName = "bastion";
|
||||||
networking.hostId = "0d13f99b";
|
networking.hostId = "0d13f99b";
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
home-manager.users."lauren_lagarde".home.stateVersion = "24.11";
|
|
||||||
|
home-manager.users."lauren_lagarde" = {
|
||||||
|
home.stateVersion = "24.11";
|
||||||
|
imports = self.homeManagerModules."lauren_lagarde";
|
||||||
|
};
|
||||||
|
|
||||||
time.timeZone = "America/Chicago";
|
time.timeZone = "America/Chicago";
|
||||||
sops.defaultSopsFile = ./secrets.yaml;
|
sops.defaultSopsFile = ./secrets.yaml;
|
||||||
|
@ -197,9 +205,12 @@
|
||||||
{
|
{
|
||||||
networking.hostName = "blockhouse";
|
networking.hostName = "blockhouse";
|
||||||
networking.hostId = "ed658529";
|
networking.hostId = "ed658529";
|
||||||
|
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
home-manager.users."lauren_lagarde".home.stateVersion = "24.11";
|
|
||||||
|
home-manager.users."lauren_lagarde" = {
|
||||||
|
home.stateVersion = "24.11";
|
||||||
|
imports = self.homeManagerModules."lauren_lagarde";
|
||||||
|
};
|
||||||
|
|
||||||
time.timeZone = "America/Chicago";
|
time.timeZone = "America/Chicago";
|
||||||
sops.defaultSopsFile = ./secrets.yaml;
|
sops.defaultSopsFile = ./secrets.yaml;
|
||||||
|
|
|
@ -30,7 +30,6 @@
|
||||||
|
|
||||||
# Users
|
# Users
|
||||||
../../users/lauren_lagarde/lauren_lagarde.nix
|
../../users/lauren_lagarde/lauren_lagarde.nix
|
||||||
../../users/lauren_lagarde/system-managed-home.nix
|
|
||||||
../../users/ashley_funkhouser/ashley_funkhouser.nix
|
../../users/ashley_funkhouser/ashley_funkhouser.nix
|
||||||
|
|
||||||
# Bastion Features
|
# Bastion Features
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
|
|
||||||
# Users
|
# Users
|
||||||
../../users/lauren_lagarde/lauren_lagarde.nix
|
../../users/lauren_lagarde/lauren_lagarde.nix
|
||||||
../../users/lauren_lagarde/system-managed-home.nix
|
|
||||||
../../users/ashley_funkhouser/ashley_funkhouser.nix
|
../../users/ashley_funkhouser/ashley_funkhouser.nix
|
||||||
|
|
||||||
# Blockhouse Features
|
# Blockhouse Features
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
# Users
|
# Users
|
||||||
../../users/lauren_lagarde/autologin.nix
|
../../users/lauren_lagarde/autologin.nix
|
||||||
../../users/lauren_lagarde/lauren_lagarde.nix
|
../../users/lauren_lagarde/lauren_lagarde.nix
|
||||||
../../users/lauren_lagarde/system-managed-home.nix
|
|
||||||
|
|
||||||
# i3wm
|
# i3wm
|
||||||
../../nixos/features/i3wm.nix
|
../../nixos/features/i3wm.nix
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{ ... }: {
|
|
||||||
home-manager.users."lauren_lagarde" = {
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
|
||||||
imports = self.homeManagerModules."lauren_lagarde";
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue