driftwood inital
This commit is contained in:
parent
18a8556187
commit
ae01142320
5 changed files with 192 additions and 0 deletions
51
home-manager/machines/driftwood/home.nix
Normal file
51
home-manager/machines/driftwood/home.nix
Normal file
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
withSystem,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
# perSystem = { ... }: { config.packages.hello = ...; };
|
||||
|
||||
flake.homeConfigurations.tides = withSystem "x86_64-linux" (
|
||||
ctx @ {
|
||||
config,
|
||||
inputs',
|
||||
...
|
||||
}:
|
||||
inputs.home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = inputs.nixpkgs.legacyPackages.${"x86_64-linux"};
|
||||
extraSpecialArgs = {
|
||||
inherit inputs inputs';
|
||||
packages = config.packages;
|
||||
};
|
||||
modules = [
|
||||
(
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../../modules/programs/shell.nix
|
||||
../../modules/programs/neovim.nix
|
||||
(import ../../modules/programs/git.nix {})
|
||||
../../modules/programs/core.nix
|
||||
../../modules/programs/ssh.nix
|
||||
];
|
||||
home.username = "nathan";
|
||||
home.homeDirectory = "/home/nathan/";
|
||||
programs.command-not-found.enable = true;
|
||||
home.stateVersion = "24.11";
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
];
|
||||
}
|
||||
)
|
||||
];
|
||||
}
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue