unfucked it
This commit is contained in:
17
flake.nix
17
flake.nix
@@ -22,15 +22,16 @@
|
|||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
||||||
homeConfigurations.ruby= home-manager.lib.homeManagerConfiguration {
|
homeConfigurations.ruby= home-manager.lib.homeManagerConfiguration {
|
||||||
extraSpecialArgs = specialArgs;
|
extraSpecialArgs = specialArgs;
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
modules = [
|
modules = [
|
||||||
# ./home-manager/${user}/home.nix
|
# ./home-manager/${user}/home.nix
|
||||||
./home-manager/ruby/home.nix
|
./home-manager/ruby/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
nixosConfigurations."yukigekko" = nixpkgs.lib.nixosSystem{
|
nixosConfigurations."yukigekko" = nixpkgs.lib.nixosSystem{
|
||||||
specialArgs = specialArgs;
|
specialArgs = specialArgs;
|
||||||
modules = [
|
modules = [
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
{
|
{
|
||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
# manage.
|
# manage.
|
||||||
home.username = "autumn";
|
home.username = "ruby";
|
||||||
home.homeDirectory = "/home/autumn";
|
home.homeDirectory = "/home/ruby";
|
||||||
home.stateVersion = "25.05"; # Please read the comment before changing.
|
home.stateVersion = "25.05"; # Please read the comment before changing.
|
||||||
|
|
||||||
|
|
||||||
@@ -41,9 +41,6 @@
|
|||||||
];
|
];
|
||||||
programs.htop.enable = true;
|
programs.htop.enable = true;
|
||||||
programs.starship.enable = true;
|
programs.starship.enable = true;
|
||||||
programs.bash.initExtra = "
|
|
||||||
fish
|
|
||||||
";
|
|
||||||
|
|
||||||
wayland.windowManager.river.enable = true;
|
wayland.windowManager.river.enable = true;
|
||||||
|
|
||||||
|
|||||||
@@ -71,13 +71,13 @@
|
|||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
users.users.ruby= {
|
users.users.ruby= {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Autumn on laptop";
|
description = "Ruby";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Install firefox.
|
# Install firefox.
|
||||||
programs.firefox.enable = true;
|
programs.firefox.enable = true;
|
||||||
# programs.bash.interactiveShellInit = "fish";
|
programs.bash.interactiveShellInit = "fish";
|
||||||
programs.appimage.enable = true;
|
programs.appimage.enable = true;
|
||||||
programs.openvpn3.enable = true;
|
programs.openvpn3.enable = true;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user