mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-13 15:21:08 -05:00
Switched To A New/Modified Structure
Based heavily on https://github.com/nmasur/dotfiles
This commit is contained in:
parent
634a129840
commit
99a16590b3
25 changed files with 495 additions and 703 deletions
28
flake.nix
28
flake.nix
|
|
@ -2,7 +2,7 @@
|
|||
description = "Lix/Auxolotl config flake";
|
||||
|
||||
inputs = {
|
||||
# nixpkgs.url = "github:auxolotl/nixpkgs/nixos-unstable";
|
||||
nixpkgs.url = "github:auxolotl/nixpkgs/nixos-unstable";
|
||||
|
||||
lix = {
|
||||
url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
|
||||
|
|
@ -27,13 +27,13 @@
|
|||
url = "https://flakehub.com/f/catppuccin/vscode/*.tar.gz";
|
||||
};
|
||||
|
||||
solaar = {
|
||||
url = "github:Svenum/Solaar-Flake/latest";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
# solaar = {
|
||||
# url = "github:Svenum/Solaar-Flake/latest";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# };
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, lix-module, solaar, ... }@inputs:
|
||||
outputs = { self, nixpkgs, lix-module, ... }@inputs:
|
||||
let
|
||||
system = "x86_64";
|
||||
globals = rec {
|
||||
|
|
@ -41,18 +41,22 @@
|
|||
fullName = "Annika Merris";
|
||||
gitName = fullName;
|
||||
gitEmail = "me@annikamerris.com";
|
||||
nixfilesRepo = "ssh://git@forgejo.local.merr.is:2222/annika/nixos2.git";
|
||||
# nixfilesRepo = "ssh://git@forgejo.local.merr.is:2222/annika/nixos2.git";
|
||||
};
|
||||
in
|
||||
in rec
|
||||
{
|
||||
nixosConfigurations = {
|
||||
kim = import ./hosts/kim {
|
||||
inherit inputs globals overlays;
|
||||
inherit inputs globals;
|
||||
};
|
||||
virt-nix = import ./hosts/virt-nix {
|
||||
inherit inputs globals;
|
||||
};
|
||||
};
|
||||
|
||||
homeConfigurations = {
|
||||
kim = nixosConfigurations.kim.config.home-manager.users.${globals.user}.home;
|
||||
};
|
||||
homeConfigurations = {
|
||||
kim = nixosConfigurations.kim.config.home-manager.users.${globals.user}.home;
|
||||
virt-nix = nixosConfigurations.kim.config.home-manager.users.${globals.user}.home;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue