Compare commits

..

No commits in common. "a550ffcd13b636bcbabf283257d613a51dffe4a4" and "dedd3b7daf2721cc59ee9cdb583105ae5fc515c1" have entirely different histories.

5 changed files with 13 additions and 62 deletions

1
.gitignore vendored
View File

@ -1,3 +1,2 @@
**/*.bak **/*.bak
*.swp *.swp
result

View File

@ -75,6 +75,13 @@
gnome-maps gnome-maps
gnome-contacts gnome-contacts
]; ];
# netboot server; disabled and broken
services.pixiecore = {
enable = false;
openFirewall = true;
dhcpNoBind = true;
kernel = "https://boot.netboot.xyz";
};
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;
@ -147,7 +154,6 @@
wget wget
vim vim
emacs29-pgtk emacs29-pgtk
nfs-utils
]; ];
services.flatpak.enable = true; services.flatpak.enable = true;

View File

@ -94,11 +94,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1710820906, "lastModified": 1710336510,
"narHash": "sha256-2bNMraoRB4pdw/HtxgYTFeMhEekBZeQ53/a8xkqpbZc=", "narHash": "sha256-mT/Z1AseVhhiFooCu2J7wudx+FivkRrlRBW0iBC2V/o=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "022464438a85450abb23d93b91aa82e0addd71fb", "rev": "383296ffa45b539c28bf79ec2a272f652838ddd1",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -125,11 +125,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1710631334, "lastModified": 1710272261,
"narHash": "sha256-rL5LSYd85kplL5othxK5lmAtjyMOBg390sGBTb3LRMM=", "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c75037bbf9093a2acb617804ee46320d6d1fea5a", "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -31,29 +31,6 @@
home-manager, home-manager,
... }: { ... }: {
nixosConfigurations = { nixosConfigurations = {
kremzeek =
let
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix" {
networking.wireless.enable = false;
}
./configuration.nix {
networking.hostName = "kremzeek";
boot.loader.efi.canTouchEfiVariables = true;
sound.enable = true;
}
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.mir = import ./home.nix;
home-manager.extraSpecialArgs = specialArgs;
}
]; # end of modules
in
nixpkgs.lib.nixosSystem {inherit system modules specialArgs; };
galvatron = galvatron =
let let
system = "aarch64-linux"; system = "aarch64-linux";
@ -94,7 +71,6 @@
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
sound.enable = true; sound.enable = true;
} }
./server/services.nix
./hardware/breakdown-hw.nix ./hardware/breakdown-hw.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {

View File

@ -1,30 +0,0 @@
# services to run on Unicron
{ config, lib, pkgs, nixos-unstable, inputs, ... }:
{
# netboot server; disabled and broken
services.pixiecore = {
enable = false;
openFirewall = true;
dhcpNoBind = true;
kernel = "https://boot.netboot.xyz";
};
services.searx = {
enable = true;
settings = {
server = {
port = 8888;
bind_address = "0.0.0.0";
secret_key = "secret key";
};
};
};
services.jellyfin = {
enable = true;
};
virtualisation.docker = {
enable = true;
# storageDriver = "btrfs"; # breaks when not btrfs...
};
}