new user on laptop
This commit is contained in:
24
system/yukigekko/flake.nix
Normal file
24
system/yukigekko/flake.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
description = "Autumn's laptop config";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager }:
|
||||
let
|
||||
username = "autumn";
|
||||
system = "x86_64-linux";
|
||||
in {
|
||||
homeConfigurations.${username} = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
modules = [
|
||||
./configuration.nix
|
||||
/home/${username}/.config/home-manager/home.nix
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user