Compare commits
No commits in common. "d63b34e2cd839a141bb208128ed4c0456e36d507" and "6b4390672b45249dc06dae0d51356434c36bb9bc" have entirely different histories.
d63b34e2cd
...
6b4390672b
32
flake.nix
32
flake.nix
@ -15,25 +15,19 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs@{ self, nixpkgs, home-manager, ... }: {
|
outputs = { self, nixpkgs, ... }@inputs:
|
||||||
nixosConfigurations = {
|
let
|
||||||
default = nixpkgs.lib.nixosSystem {
|
system = "x86_64-linux";
|
||||||
system = "x86_64-linux";
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
modules = [
|
in
|
||||||
./nixos/configuration.nix
|
{
|
||||||
|
|
||||||
home-manager.nixosModules.home-manager
|
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
|
||||||
{
|
specialArgs = {inherit inputs;};
|
||||||
home-manager.useGlobalPkgs = true;
|
modules = [
|
||||||
home-manager.extraSpecialArgs = {inherit inputs;};
|
./hosts/default/configuration.nix
|
||||||
home-manager.users.crony = {
|
inputs.home-manager.nixosModules.default
|
||||||
imports = [
|
];
|
||||||
./home-manager/home.nix
|
};
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Imports
|
# Imports
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
inputs.home-manager.nixosModules.default
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
@ -273,6 +274,15 @@
|
|||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Enable home manager for my user
|
||||||
|
home-manager = {
|
||||||
|
useGlobalPkgs = true;
|
||||||
|
extraSpecialArgs = {inherit inputs;};
|
||||||
|
users = {
|
||||||
|
"crony" = import ./home.nix;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Allow appimages to run manually
|
# Allow appimages to run manually
|
||||||
boot.binfmt.registrations.appimage = {
|
boot.binfmt.registrations.appimage = {
|
||||||
wrapInterpreterInShell = false;
|
wrapInterpreterInShell = false;
|
Loading…
Reference in New Issue
Block a user