added home-manager

This commit is contained in:
Victor Ișan 2026-01-27 20:11:00 +01:00
parent ea59b31024
commit aa2c0e0784
5 changed files with 75 additions and 9 deletions

29
flake.lock generated
View File

@ -20,18 +20,38 @@
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1769450270,
"narHash": "sha256-pdVm/zJazDUAasTyHFX/Pbrlk9Upjxi0yzgn7GjGe4g=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "a10c1e8f5ad2589414407f4851c221cb66270257",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1769318308,
"narHash": "sha256-Mjx6p96Pkefks3+aA+72lu1xVehb6mv2yTUUqmSet6Q=",
"lastModified": 1769170682,
"narHash": "sha256-oMmN1lVQU0F0W2k6OI3bgdzp2YOHWYUAw79qzDSjenU=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1cd347bf3355fce6c64ab37d3967b4a2cb4b878c",
"rev": "c5296fdd05cfa2c187990dd909864da9658df755",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-25.11",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
@ -39,6 +59,7 @@
"root": {
"inputs": {
"disko": "disko",
"home-manager": "home-manager",
"nixpkgs": "nixpkgs"
}
}

View File

@ -5,9 +5,11 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, disko }:
outputs = { self, nixpkgs, disko, home-manager }:
let
# options
system = "x86_64-linux";
@ -36,6 +38,9 @@
./hosts/palantir.nix
./modules/base.nix
./modules/gaming.nix
home-manager.nixosModules.home-manager
./modules/home.nix
]
++ lib.optional (builtins.pathExists ./hardware-configuration.nix) ./hardware-configuration.nix;
};

View File

@ -14,10 +14,7 @@
efi.canTouchEfiVariables = true;
};
time.timeZone = "Europe/Bucharest";
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
time.timeZone = "Europe/Vienna";
users.users.${myUser} = {
isNormalUser = true;

View File

@ -11,5 +11,6 @@
curl
htop
tmux
neovim
];
}

42
modules/home.nix Normal file
View File

@ -0,0 +1,42 @@
{ config, pkgs, myUser, ... }:
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
home-manager.users.${myUser} = {
programs.starship = {
enable = true;
settings = {
add_newline = false;
aws.disabled = true;
gcloud.disabled = true;
line_break.disabled = true;
};
};
programs.zsh = {
enable = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
history = {
save = 10000;
ignoreSpace = true;
ignoreDups = true;
extended = true;
share = true;
path = "$HOME/.zsh_history";
};
shellAliases = {
ls = "ls --color=yes";
la = "ls -a";
ll = "ls -l";
lla = "ls -la";
};
};
home.stateVersion = config.system.stateVersion;
};
}