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 = [ ]; imports = [ ];
@@ -117,7 +122,10 @@
users.users.roy = { users.users.roy = {
isNormalUser = true; isNormalUser = true;
hashedPassword = "$y$j9T$4yOAv6R7Xtn23XmhSSC8g.$T1CckfWgxjEyZshjBzcaMO9WidP.q..OG7LwtXFTw12"; hashedPassword = "$y$j9T$4yOAv6R7Xtn23XmhSSC8g.$T1CckfWgxjEyZshjBzcaMO9WidP.q..OG7LwtXFTw12";
extraGroups = [ "wheel" "networkmanager" ]; extraGroups = [
"wheel"
"networkmanager"
];
shell = pkgs.fish; shell = pkgs.fish;
}; };
@@ -126,13 +134,17 @@
zfs rollback -r zroot/root@blank zfs rollback -r zroot/root@blank
''; '';
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [
"nix-command"
"flakes"
];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Declare system wide pkgs # Declare system wide pkgs
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
gimp
alacritty alacritty
gimp
neofetch
rose-pine-hyprcursor rose-pine-hyprcursor
vim vim
wget wget
@@ -222,4 +234,3 @@
system.stateVersion = "24.11"; 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 { nixosConfigurations.default = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
@@ -38,15 +49,17 @@
disko.nixosModules.disko disko.nixosModules.disko
impermanence.nixosModules.impermanence impermanence.nixosModules.impermanence
sops-nix.nixosModules.sops sops-nix.nixosModules.sops
home-manager.nixosModules.home-manager { home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; }; home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.users.roy = { ... }: { home-manager.users.roy =
{ ... }:
{
imports = [ imports = [
./home.nix ./home.nix
nixvim.homeModules.nixvim nixvim.homeModules.nixvim
impermanence.homeManagerModules.impermanence
sops-nix.homeManagerModules.sops sops-nix.homeManagerModules.sops
]; ];
}; };