Change of named folders and fix configurations

This commit is contained in:
2026-01-25 14:21:25 +01:00
parent 48f5dc3cf1
commit 8744d630d2
19 changed files with 22 additions and 45 deletions
+9 -2
View File
@@ -14,6 +14,7 @@
outputs =
{
nixpkgs,
home-manager,
...
}@inputs:
let
@@ -25,13 +26,19 @@
overlays = import ./overlays { inherit inputs; };
apps = import ./modules/apps;
home = import ./modules/home;
nixos = import ./modules/nixos;
home-manager = import ./modules/home;
nixosConfigurations = {
nixos = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [ ./nixos/configuration.nix ];
modules = [
./nixos/configuration.nix
]
++ [
home-manager.nixosModules.home-manager
./home/configuration.nix
];
};
};
BIN
View File
Binary file not shown.
-27
View File
@@ -1,27 +0,0 @@
{
lib,
pkgs,
config,
...
}:
with lib;
let
cfg = config.within.zed;
in
{
options.within.zed = {
enable = mkEnableOption "System zed service";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
# Nix languages parser
nil
nixd
# Zed Editor
zed-editor
];
};
}
+11
View File
@@ -0,0 +1,11 @@
{ inputs, ... }:
{
home-manager.useUserPackages = true;
home-manager.overwriteBackup = true;
home-manager.backupFileExtension = "bak";
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.sharedModules = [
./home.nix
];
}
-1
View File
@@ -7,7 +7,6 @@
./configurations/gnome.nix
./configurations/firefox.nix
./configurations/ghostty.nix
./configurations/zed.nix
];
nixpkgs = {

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 99 KiB

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 99 KiB

+2 -3
View File
@@ -10,11 +10,10 @@
# Hardware
./hardware-configuration.nix
./configurations/kernel.nix
./parts/kernel.nix
# Configurations
./configurations/users.nix
./configurations/home-manager.nix
./parts/users.nix
# Modules
inputs.self.nixos
-12
View File
@@ -1,12 +0,0 @@
{ inputs, ... }:
{
imports = [ inputs.home-manager.nixosModules.home-manager ];
home-manager = {
extraSpecialArgs = { inherit inputs; };
users = {
alistreaza = import ../../home-manager/home.nix;
};
};
}