Rename folders coherently

This commit is contained in:
Laurent Gueret
2026-01-27 15:57:56 +01:00
parent 03a8e36d4b
commit 3975dce418
25 changed files with 105 additions and 96 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ inputs, ... }:
{
imports = [ ./parts/users.nix ];
imports = [ ./users ];
home-manager.useUserPackages = true;
home-manager.overwriteBackup = true;
home-manager.backupFileExtension = "bak";
-12
View File
@@ -1,12 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
zed-editor
# Languages servers
nil
nixd
];
}
+8 -13
View File
@@ -4,24 +4,19 @@
}:
{
imports = [
# App configurations
./configurations/gnome.nix
./configurations/firefox.nix
./configurations/ghostty.nix
./configurations/zed.nix
# Modules
inputs.self.home
];
nixpkgs = {
overlays = [
inputs.self.overlays.additions
inputs.self.overlays.modifications
inputs.self.overlays.unstable-packages
];
};
home = {
username = "alistreaza";
homeDirectory = "/home/alistreaza";
};
within.home.zed.enable = true;
within.home.jetbrains.enable = true;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "25.11";
-5
View File
@@ -1,5 +0,0 @@
{ ... }:
{
home-manager.users.alistreaza = import ../home.nix;
}
+9
View File
@@ -0,0 +1,9 @@
{ ... }:
{
imports = [ ../home.nix ];
home = {
username = "alistreaza";
homeDirectory = "/home/alistreaza";
};
}
+3
View File
@@ -0,0 +1,3 @@
{
home-manager.users.alistreaza = import ./alistreaza.nix;
}