Deck
This commit is contained in:
parent
fd8055f1ab
commit
6791f73744
2 changed files with 21 additions and 18 deletions
37
flake.nix
37
flake.nix
|
@ -98,24 +98,25 @@
|
|||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||
homeConfigurations = {
|
||||
# TODO: non-system-specific home configurations?
|
||||
# "base-x86_64-linux" = let
|
||||
# system = "x86_64-linux";
|
||||
# in
|
||||
# home-manager.lib.homeManagerConfiguration {
|
||||
# pkgs = nixpkgs.legacyPackages.${system};
|
||||
# extraSpecialArgs = {
|
||||
# inherit inputs outputs system;
|
||||
# };
|
||||
# modules = with outputs.homeManagerModules; [linux];
|
||||
# };
|
||||
# "base-aarch64-darwin" = let
|
||||
# system = "aarch64-darwin";
|
||||
# in
|
||||
# home-manager.lib.homeManagerConfiguration {
|
||||
# pkgs = nixpkgs.legacyPackages.${system};
|
||||
# extraSpecialArgs = {inherit inputs outputs system;};
|
||||
# modules = with outputs.homeManagerModules; [macos];
|
||||
# };
|
||||
"deck" = let
|
||||
system = "x86_64-linux";
|
||||
in
|
||||
home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
extraSpecialArgs = {
|
||||
inherit inputs outputs system;
|
||||
inherit (outputs) colors font;
|
||||
};
|
||||
modules = with outputs.homeManagerModules; [
|
||||
common
|
||||
{
|
||||
home.homeDirectory = "/home/deck";
|
||||
home.username = "deck";
|
||||
home.stateVersion = "24.05";
|
||||
}
|
||||
linux
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
# Disk partition schemes and functions
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
tmux
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home = {
|
||||
username = lib.mkDefault "lytedev";
|
||||
homeDirectory = lib.mkDefault "/home/lytedev";
|
||||
|
|
Loading…
Reference in a new issue