delete sm
This commit is contained in:
parent
1b0796e4dd
commit
e7056267b8
2 changed files with 0 additions and 160 deletions
62
flake.fucked
62
flake.fucked
|
|
@ -1,62 +0,0 @@
|
||||||
{
|
|
||||||
description = "Tulga's multi-device NixOS configuration (no global modules)";
|
|
||||||
|
|
||||||
inputs = {
|
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
||||||
|
|
||||||
home-manager = {
|
|
||||||
url = "github:nix-community/home-manager";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
nix-colors.url = "github:misterio77/nix-colors";
|
|
||||||
|
|
||||||
zen-browser = {
|
|
||||||
url = "github:0xc000022070/zen-browser-flake";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
disko = {
|
|
||||||
url = "github:nix-community/disko";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, home-manager, nix-colors, disko, ... } @ inputs:
|
|
||||||
let
|
|
||||||
system = "x86_64-linux";
|
|
||||||
pkgs = import nixpkgs {
|
|
||||||
inherit system;
|
|
||||||
config.allowUnfree = true;
|
|
||||||
};
|
|
||||||
in {
|
|
||||||
|
|
||||||
#
|
|
||||||
nixosConfigurations.virgil = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit system;
|
|
||||||
modules = [
|
|
||||||
./hosts/virgil/configuration.nix
|
|
||||||
home-manager.nixosModules.home-manager
|
|
||||||
./modules/home.nix
|
|
||||||
];
|
|
||||||
specialArgs = { inherit inputs pkgs self ; };
|
|
||||||
};
|
|
||||||
|
|
||||||
#
|
|
||||||
nixosConfigurations.archangel = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit system;
|
|
||||||
modules = [
|
|
||||||
./hosts/archangel/configuration.nix
|
|
||||||
];
|
|
||||||
specialArgs = { inherit ; };
|
|
||||||
};
|
|
||||||
|
|
||||||
# placeholder
|
|
||||||
#nixosConfigurations.server = nixpkgs.lib.nixosSystem {
|
|
||||||
# inherit system;
|
|
||||||
# modules = [
|
|
||||||
# ./hosts/server/configuration.nix
|
|
||||||
# ];
|
|
||||||
# };
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -1,98 +0,0 @@
|
||||||
{
|
|
||||||
description = "NixOS configuration";
|
|
||||||
|
|
||||||
inputs = {
|
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
||||||
|
|
||||||
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
|
|
||||||
|
|
||||||
home-manager = {
|
|
||||||
url = "github:nix-community/home-manager";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
nix-colors.url = "github:misterio77/nix-colors";
|
|
||||||
|
|
||||||
zen-browser = {
|
|
||||||
url = "github:0xc000022070/zen-browser-flake";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
disko = {
|
|
||||||
url = "github:nix-community/disko";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, home-manager, nix-colors, disko, ... } @ inputs:
|
|
||||||
let
|
|
||||||
system = "x86_64-linux";
|
|
||||||
pkgs = import nixpkgs {
|
|
||||||
inherit system;
|
|
||||||
config.allowUnfree = true;
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
nixosConfigurations = {
|
|
||||||
|
|
||||||
# ------------------------
|
|
||||||
# Virgil machine
|
|
||||||
# ------------------------
|
|
||||||
virgil = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit system;
|
|
||||||
|
|
||||||
modules = [
|
|
||||||
./hosts/virgil/configuration.nix
|
|
||||||
home-manager.nixosModules.home-manager
|
|
||||||
inputs.disko.nixosModules.disko
|
|
||||||
{
|
|
||||||
home-manager.users.tulg.imports = [ ./modules/home.nix ];
|
|
||||||
home-manager.extraSpecialArgs = {
|
|
||||||
spicetify-nix = inputs.spicetify-nix;
|
|
||||||
zen-browser = inputs.zen-browser;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
# ------------------------
|
|
||||||
# archangel
|
|
||||||
# ------------------------
|
|
||||||
archangel = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit system;
|
|
||||||
|
|
||||||
modules = [
|
|
||||||
./hosts/archangel/configuration.nix
|
|
||||||
home-manager.nixosModules.home-manager
|
|
||||||
{
|
|
||||||
home-manager.users.tulg.imports = [ ./modules/home.nix ];
|
|
||||||
home-manager.extraSpecialArgs = {
|
|
||||||
spicetify-nix = inputs.spicetify-nix;
|
|
||||||
zen-browser = inputs.zen-browser;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
# ------------------------
|
|
||||||
# Placeholder machine 2
|
|
||||||
# ------------------------
|
|
||||||
machine2 = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit system;
|
|
||||||
|
|
||||||
modules = [
|
|
||||||
./hosts/machine2/configuration.nix
|
|
||||||
home-manager.nixosModules.home-manager
|
|
||||||
{
|
|
||||||
home-manager.users.tulg.imports = [ ./modules/home.nix ];
|
|
||||||
home-manager.extraSpecialArgs = {
|
|
||||||
spicetify-nix = inputs.spicetify-nix;
|
|
||||||
zen-browser = inputs.zen-browser;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue