this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: cleanup

+12 -27
+5 -20
flake.nix
··· 1 1 { 2 - description = "Home Manager configuration of alexandre"; 3 - 4 2 inputs = { 5 - # Specify the source of Home Manager and Nixpkgs. 6 3 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 7 4 home-manager = { 8 5 url = "github:nix-community/home-manager"; ··· 10 7 }; 11 8 }; 12 9 13 - outputs = 14 - { nixpkgs, home-manager, ... }: 15 - let 16 - system = "x86_64-linux"; 17 - pkgs = nixpkgs.legacyPackages.${system}; 18 - in 19 - { 20 - homeConfigurations."alexandre" = home-manager.lib.homeManagerConfiguration { 21 - inherit pkgs; 22 - 23 - # Specify your home configuration modules here, for example, 24 - # the path to your home.nix. 25 - modules = [ ./home.nix ]; 26 - 27 - # Optionally use extraSpecialArgs 28 - # to pass through arguments to home.nix 29 - }; 10 + outputs = { nixpkgs, home-manager, ... }: { 11 + homeConfigurations.alexandre = home-manager.lib.homeManagerConfiguration { 12 + pkgs = nixpkgs.legacyPackages.x86_64-linux; 13 + modules = [ ./home.nix ]; 30 14 }; 15 + }; 31 16 }
+7 -7
home.nix
··· 1 - { config, pkgs, ... }: 2 - 1 + { pkgs, ... }: 3 2 { 4 - home.username = "alexandre"; 5 - home.homeDirectory = "/var/home/alexandre"; 6 - 7 - home.stateVersion = "25.11"; # Please read the comment before changing. 3 + home = { 4 + username = "alexandre"; 5 + homeDirectory = "/var/home/alexandre"; 6 + stateVersion = "25.11"; 7 + }; 8 8 9 9 home.packages = with pkgs ; [ 10 10 helix 11 - nil 12 11 jujutsu 12 + nil 13 13 ]; 14 14 15 15 programs.home-manager.enable = true;