added host: lolcathost
This commit is contained in:
parent
2a0373dc73
commit
be6926fb0f
24 changed files with 1176 additions and 1090 deletions
64
flake.nix
Normal file → Executable file
64
flake.nix
Normal file → Executable file
|
|
@ -3,42 +3,38 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
|
||||
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
spicetify-nix = {
|
||||
spicetify-nix = {
|
||||
url = "github:Gerg-L/spicetify-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
#stylix.url = "github:danth/stylix";
|
||||
|
||||
nixcord = {
|
||||
url = "github:kaylorben/nixcord";
|
||||
};
|
||||
#stylix.url = "github:danth/stylix";
|
||||
|
||||
grub2-themes = {
|
||||
url = "github:vinceliuice/grub2-themes";
|
||||
};
|
||||
nixcord = { url = "github:kaylorben/nixcord"; };
|
||||
|
||||
# is this necessary? (aren't I enabling it in `configuration.nix` anyways?)
|
||||
nixvim = {
|
||||
url = "github:nix-community/nixvim";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
grub2-themes = { url = "github:vinceliuice/grub2-themes"; };
|
||||
|
||||
# is this necessary? (aren't I enabling it in `configuration.nix` anyways?)
|
||||
hyprland.url = "github:hyprwm/Hyprland";
|
||||
|
||||
swww.url = "github:LGFae/swww";
|
||||
swww.url = "github:LGFae/swww";
|
||||
};
|
||||
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
home-manager,
|
||||
hyprland,
|
||||
grub2-themes,
|
||||
#stylix,
|
||||
...
|
||||
}@inputs:
|
||||
outputs = { self, nixpkgs, home-manager, hyprland, grub2-themes, nixvim
|
||||
, nixcord,
|
||||
#stylix,
|
||||
... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
|
||||
|
|
@ -54,38 +50,32 @@
|
|||
nixosConfigurations = {
|
||||
# i be on my puter fr
|
||||
myputer = nixpkgs.lib.nixosSystem {
|
||||
# nix passes these to every single module above
|
||||
specialArgs = {
|
||||
inherit inputs pkgs;
|
||||
};
|
||||
# nix passes these to every single module above
|
||||
specialArgs = { inherit inputs pkgs; };
|
||||
|
||||
modules = [
|
||||
./hosts/myputer
|
||||
grub2-themes.nixosModules.default
|
||||
#stylix.nixosModules.stylix
|
||||
grub2-themes.nixosModules.default
|
||||
#stylix.nixosModules.stylix
|
||||
];
|
||||
};
|
||||
|
||||
# my laptop 0w0
|
||||
lolcathost = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
specialArgs = { inherit inputs pkgs; };
|
||||
|
||||
modules = [
|
||||
./hosts/lolcathost
|
||||
];
|
||||
modules = [ ./hosts/lolcathost ];
|
||||
};
|
||||
};
|
||||
|
||||
homeConfigurations = {
|
||||
me = home-manager.lib.homeManagerConfiguration {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
specialArgs = { inherit inputs; };
|
||||
|
||||
modules = [
|
||||
modules = [
|
||||
./home/me
|
||||
#nixcord.homeManagerModules.nixcord
|
||||
#nixvim.homeManagerModules.nixvim
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue