Merge branch 'main' of https://codeberg.org/traverseda/nixos-config
This commit is contained in:
commit
16d42cfd4e
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
https://github.com/Misterio77/nix-starter-configs
|
https://github.com/Misterio77/nix-starter-configs
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
@ -8,6 +7,12 @@ https://github.com/Misterio77/nix-starter-configs
|
|||||||
nixos-rebuild build-vm --flake ./#athame
|
nixos-rebuild build-vm --flake ./#athame
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sh <(curl -L https://nixos.org/nix/install) --daemon
|
||||||
|
home-manager switch --flake git+https://codeberg.org/traverseda/nixos-config.git?ref=main#traverseda@generic --extra-experimental-features nix-command --extra-experimental-features flakes
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Building a LiveCD
|
## Building a LiveCD
|
||||||
|
|
||||||
To build a livecd using this flake, you can use the following command:
|
To build a livecd using this flake, you can use the following command:
|
||||||
|
10
flake.nix
10
flake.nix
@ -179,6 +179,16 @@
|
|||||||
./home-manager/traverseda/home.nix
|
./home-manager/traverseda/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
"spiri@generic" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
pkgs = nixpkgs.legacyPackages.aarch64-linux; # Home-manager requires 'pkgs' instance
|
||||||
|
extraSpecialArgs = {inherit inputs outputs;
|
||||||
|
homeUser = "spiri";
|
||||||
|
homeDir = "/home/spiri";
|
||||||
|
};
|
||||||
|
modules = [
|
||||||
|
./home-manager/traverseda/home.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
# lib,
|
# lib,
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
specialArgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
# You can import other home-manager modules here
|
# You can import other home-manager modules here
|
||||||
@ -42,8 +43,8 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
username = "traverseda";
|
username = specialArgs.homeUser or "traverseda";
|
||||||
homeDirectory = "/home/traverseda";
|
homeDirectory = specialArgs.homeDir or "/home/traverseda";
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
Loading…
Reference in New Issue
Block a user