Skip to content

Commit 2667591

Browse files
committed
Small den fixes, remove unused standalone home configurations
1 parent 2064c49 commit 2667591

17 files changed

Lines changed: 227 additions & 254 deletions

File tree

homes/jasperro-doosje.nix

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
{ __findFile, ... }:
22
{
3-
den.homes.x86_64-linux.jasperro-doosje = {
4-
description = "Standalone home configuration for jasperro's desktop computer.";
5-
aspect = "jasperro-doosje";
6-
};
7-
83
den.aspects.jasperro-doosje = {
94
includes = [
105
<JDF/users/jasperro/desktop/niri>

homes/wiktorine-koekie.nix

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
{ __findFile, ... }:
22
{
3-
den.homes.x86_64-linux.wiktorine-koekie = {
4-
description = "Standalone home configuration for wiktorine's desktop computer.";
5-
aspect = "jasperro-wiktorine";
6-
};
7-
83
den.aspects.wiktorine-koekie = {
94
homeManager =
105
{ pkgs, ... }:

homes/wiktorine-waffie.nix

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
{ __findFile, ... }:
22
{
3-
den.homes.x86_64-linux.wiktorine-waffie = {
4-
description = "Standalone home configuration for wiktorine's laptop.";
5-
aspect = "wiktorine-waffie";
6-
};
7-
83
den.aspects.wiktorine-waffie = {
94
homeManager =
105
{ pkgs, ... }:

hosts/doosje/doosje.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
in
5858
{
5959
imports = [
60-
inputs.home-manager.nixosModules.home-manager
6160
inputs.hardware.nixosModules.common-cpu-amd
6261
inputs.hardware.nixosModules.common-cpu-amd-pstate
6362
inputs.hardware.nixosModules.common-gpu-amd

hosts/taart/_services/default.nix

Lines changed: 0 additions & 10 deletions
This file was deleted.

hosts/taart/services.nix

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{ ... }:
2+
{
3+
JDF.hosts._.taart = {
4+
includes = [
5+
<JDF/services/openssh-inbound>
6+
];
7+
nixos = {
8+
imports = [
9+
./_services/home-automation
10+
./_services/acme.nix
11+
./_services/nginx.nix
12+
./_services/vaultwarden.nix
13+
];
14+
};
15+
};
16+
}

hosts/taart/taart.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
{ pkgs, ... }:
2727
{
2828
imports = [
29-
./_services
30-
3129
# Disable all below for LXC
3230
# inputs.hardware.nixosModules.raspberry-pi-4
3331
# inputs.hardware.nixosModules.common-pc-ssd

modules/aspects/defaults-home.nix

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
{
2+
lib,
23
inputs,
34
outputs,
4-
lib,
55
...
66
}:
77
{
8-
den.default.nixos = {
9-
home-manager.useGlobalPkgs = true;
10-
home-manager.backupFileExtension = "hmbackup";
11-
home-manager.extraSpecialArgs = {
12-
inherit inputs;
13-
inherit outputs;
14-
};
15-
};
8+
den.ctx.hm-host.includes = [
9+
{
10+
nixos.home-manager = {
11+
useGlobalPkgs = true;
12+
backupFileExtension = "hmbackup";
13+
extraSpecialArgs = {
14+
inherit inputs;
15+
inherit outputs;
16+
};
17+
};
18+
}
19+
];
1620
den.default.homeManager =
1721
{ pkgs, ... }:
1822
{

modules/den.nix

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
{ inputs, ... }:
22
{
33
imports = [ inputs.den.flakeModule ];
4-
den.hosts.aarch64-linux.taart.users.jasperro = { };
5-
den.hosts.x86_64-linux.koekie.users = {
6-
jasperro = { };
7-
wiktorine = { };
8-
};
9-
den.hosts.x86_64-linux.superlaptop.users.colin = { };
10-
den.hosts.x86_64-linux.waffie.users.wiktorine = { };
114
}

modules/flake/devShells.nix

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)