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