remove home manager input, auto save formatted

This commit is contained in:
2026-02-14 16:04:10 -06:00
parent c4155cb3c6
commit ccd1207372
2 changed files with 61 additions and 37 deletions
+16 -5
View File
@@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
@@ -117,7 +122,10 @@
users.users.roy = {
isNormalUser = true;
hashedPassword = "$y$j9T$4yOAv6R7Xtn23XmhSSC8g.$T1CckfWgxjEyZshjBzcaMO9WidP.q..OG7LwtXFTw12";
extraGroups = [ "wheel" "networkmanager" ];
extraGroups = [
"wheel"
"networkmanager"
];
shell = pkgs.fish;
};
@@ -126,13 +134,17 @@
zfs rollback -r zroot/root@blank
'';
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
nixpkgs.config.allowUnfree = true;
# Declare system wide pkgs
environment.systemPackages = with pkgs; [
gimp
alacritty
gimp
neofetch
rose-pine-hyprcursor
vim
wget
@@ -222,4 +234,3 @@
system.stateVersion = "24.11";
}
+17 -4
View File
@@ -27,7 +27,18 @@
};
};
outputs = { self, nixpkgs, nixvim, home-manager, disko, impermanence, sops-nix, firefox-addons }@inputs: {
outputs =
{
self,
nixpkgs,
nixvim,
home-manager,
disko,
impermanence,
sops-nix,
firefox-addons,
}@inputs:
{
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
@@ -38,15 +49,17 @@
disko.nixosModules.disko
impermanence.nixosModules.impermanence
sops-nix.nixosModules.sops
home-manager.nixosModules.home-manager {
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.users.roy = { ... }: {
home-manager.users.roy =
{ ... }:
{
imports = [
./home.nix
nixvim.homeModules.nixvim
impermanence.homeManagerModules.impermanence
sops-nix.homeManagerModules.sops
];
};