removed unused hosts

This commit is contained in:
Sam 2024-10-14 18:54:48 +01:00
parent a9fc820d61
commit 2516f9de21
9 changed files with 11 additions and 60 deletions

View File

@ -134,7 +134,7 @@
} }
]; ];
}; };
nebula = nixpkgs.lib.nixosSystem { merlin = nixpkgs.lib.nixosSystem {
inherit specialArgs; inherit specialArgs;
modules = [ modules = [
./hosts/nebula ./hosts/nebula

View File

@ -1,4 +1,4 @@
{config, ...}: { {config, pkgs, ...}: {
imports = [ imports = [
# Import users # Import users
./users/sam ./users/sam
@ -15,6 +15,10 @@
./common/optional/yazi.nix ./common/optional/yazi.nix
]; ];
home.packages = [
pkgs.qgis
];
colorScheme = { colorScheme = {
slug = "serene"; slug = "serene";
name = "Serene"; name = "Serene";

View File

@ -15,7 +15,6 @@
pkgs.kcolorchooser pkgs.kcolorchooser
pkgs.zotero pkgs.zotero
pkgs.transmission pkgs.transmission
pkgs.qgis
pkgs.mpv pkgs.mpv
pkgs.gnome.simple-scan pkgs.gnome.simple-scan
pkgs.pandoc pkgs.pandoc

View File

@ -1,14 +0,0 @@
{ ...
}: {
imports = [
# Import users
./users/admin
./common/core
./common/optional/sops.nix
# Import optional
./common/optional/git.nix
];
}

View File

@ -1,13 +0,0 @@
{ ...
}: {
imports = [
# Import users
./users/admin
./common/core
# Import optional
./common/optional/git.nix
];
}

View File

@ -1,29 +0,0 @@
{ ...
}: {
imports = [
# Import users
./users/sam
./common/core
./common/optional/desktop/hyprland
./common/optional/desktop/waybar.nix
./common/optional/sops.nix
# Import optional
./common/optional/git.nix
];
# ------
# | DP-1
# ------
monitors = [
{
name = "Virtual-1";
width = 2048;
height = 1152;
x = 0;
workspace = "1";
primary = true;
}
];
}

View File

@ -20,6 +20,10 @@
./common/optional/transmission.nix ./common/optional/transmission.nix
]; ];
home.packages = [
pkgs.qgis
];
colorScheme = { colorScheme = {
slug = "serene"; slug = "serene";
name = "Serene"; name = "Serene";

View File

@ -37,7 +37,7 @@ in
}; };
networking = { networking = {
hostName = "nebula"; hostName = "merlin";
networkmanager.enable = true; networkmanager.enable = true;
enableIPv6 = false; enableIPv6 = false;
}; };