This commit is contained in:
biscuit
2025-05-06 14:58:15 -05:00
parent e209ddd352
commit 6f6145f1c0
6 changed files with 131 additions and 30 deletions
View File
Generated
+73
View File
@@ -1,5 +1,23 @@
{ {
"nodes": { "nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@@ -20,6 +38,28 @@
"type": "github" "type": "github"
} }
}, },
"nix4nvchad": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": [
"nixpkgs"
],
"nvchad-starter": "nvchad-starter"
},
"locked": {
"lastModified": 1746419967,
"narHash": "sha256-0Rst+it8hsUS08UyS0YtUUsFfDX0zkpflOhHzcMz5Zw=",
"owner": "nix-community",
"repo": "nix4nvchad",
"rev": "468b8f9a00e7fddb3cf031bb4e968c3d08562e4e",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "nix4nvchad",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1746328495, "lastModified": 1746328495,
@@ -52,12 +92,45 @@
"type": "github" "type": "github"
} }
}, },
"nvchad-starter": {
"flake": false,
"locked": {
"lastModified": 1746346803,
"narHash": "sha256-+z0LG/N+dCQY0vFCKEeBSifvzOB7+KFKtAZGJMKQpT0=",
"owner": "NvChad",
"repo": "starter",
"rev": "2b4293a4c10a29cb52eefc430d3d77582c1a24fd",
"type": "github"
},
"original": {
"owner": "NvChad",
"ref": "main",
"repo": "starter",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nix4nvchad": "nix4nvchad",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgsveryold": "nixpkgsveryold" "nixpkgsveryold": "nixpkgsveryold"
} }
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",
+21 -22
View File
@@ -7,6 +7,10 @@
home-manager.url = "github:nix-community/home-manager"; home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix4nvchad = {
url = "github:nix-community/nix4nvchad";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
#outputs = { self, nixpkgs, nixpkgsveryold }: #outputs = { self, nixpkgs, nixpkgsveryold }:
@@ -22,28 +26,23 @@
# }; # };
#}; #};
outputs = { self, nixpkgs, home-manager, ... } @ inputs: outputs = { nixpkgs, home-manager, ... } @ inputs:
let let
system = "x86_64-linux"; system = "x86_64-linux";
lib = nixpkgs.lib; pkgs = import nixpkgs {
extraSpecialArgs = { inherit system inputs; }; inherit system;
specialArgs = { inherit system inputs; }; config = {
in { allowUnfree = false;
nixosConfigurations = {
biscuit = lib.nixosSystem {
system = "x86_64-linux";
specialArgs = extraSpecialArgs;
modules = [
./nixos/configuration.nix
home-manager.nixosModules.home-manager {
home-manager = {
useGlobalPkgs = true;
users.biscuit = import ./home-manager/home.nix;
};
}
];
}; };
};
}; in {
}; nixosConfigurations = {
biscuit = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs system; };
modules = [
./nixos/configuration.nix
];
};
};
};
} }
Binary file not shown.
+28 -6
View File
@@ -1,10 +1,32 @@
{ inputs, config, pkgs, ... }:
{ {
home.username = "biscuit"; inputs,
home.homeDirectory = "/home/biscuit"; outputs,
lib,
config,
pkgs,
...
}: {
imports = [
inputs.nvchad4nix.homeManagerModule
];
programs.bash.enable = true; home = {
home.stateVersion = "23.11"; # Adjust to your system version username = "biscuit";
homeDirectory = "/home/biscuit";
};
home.packages = [];
home.sessionVariables = {
EDITOR = "nvim";
};
programs.home-manager.enable = true;
programs.git.enable = true;
programs.nvchad.enable - true;
systemd.user.startServices = "sd-switch";
home.stateVersion = "23.11";
} }
+9 -2
View File
@@ -43,7 +43,6 @@
isNormalUser = true; isNormalUser = true;
description = "Biscuit"; description = "Biscuit";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
initialPassword = "biscuitforeveryone";
packages = with pkgs; packages = with pkgs;
[]; [];
}; };
@@ -53,6 +52,8 @@
vim # Default editor vim # Default editor
wget wget
git git
neovim
home-manager
]; ];
# Enable the OpenSSH daemon. # Enable the OpenSSH daemon.
@@ -60,7 +61,13 @@
# Enable experimental features # Enable experimental features
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs = {
overlays = [
(final: prev: {
nvchad = inputs.nvchad4nix.packages.${pkgs.system}.nvchad;
})
];
};
# System state version # System state version
system.stateVersion = "24.11"; # Ensure this matches your NixOS version system.stateVersion = "24.11"; # Ensure this matches your NixOS version
} }