this repo has no description
0
fork

Configure Feed

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

feat: setup Easy Effects

+20 -7
+7 -6
flake.lock
··· 7 7 ] 8 8 }, 9 9 "locked": { 10 - "lastModified": 1689495092, 11 - "narHash": "sha256-yZu2j5FpLZEPhJQQutMCPTxa1VMigLPabLYvLTq6ASM=", 10 + "lastModified": 1687871164, 11 + "narHash": "sha256-bBFlPthuYX322xOlpJvkjUBz0C+MOBjZdDOOJJ+G2jU=", 12 12 "owner": "nix-community", 13 13 "repo": "home-manager", 14 - "rev": "2f84579a70b8c74e5ebb37299a0c3ba279f09382", 14 + "rev": "07c347bb50994691d7b0095f45ebd8838cf6bc38", 15 15 "type": "github" 16 16 }, 17 17 "original": { 18 18 "owner": "nix-community", 19 + "ref": "release-23.05", 19 20 "repo": "home-manager", 20 21 "type": "github" 21 22 } 22 23 }, 23 24 "nixpkgs": { 24 25 "locked": { 25 - "lastModified": 1689431009, 26 - "narHash": "sha256-hPgQCRWP5q/Xc4qOIP3c2krR9nQua78+t9EDiuey5nc=", 26 + "lastModified": 1689605451, 27 + "narHash": "sha256-u2qp2k9V1smCfk6rdUcgMKvBj3G9jVvaPHyeXinjN9E=", 27 28 "owner": "nixos", 28 29 "repo": "nixpkgs", 29 - "rev": "af8279f65fe71ce5a448408034a8c06e2b4b2c66", 30 + "rev": "53657afe29748b3e462f1f892287b7e254c26d77", 30 31 "type": "github" 31 32 }, 32 33 "original": {
+3 -1
flake.nix
··· 6 6 url = "github:nixos/nixpkgs/nixos-23.05"; 7 7 }; 8 8 home-manager = { 9 - url = "github:nix-community/home-manager"; 9 + url = "github:nix-community/home-manager/release-23.05"; 10 10 inputs.nixpkgs.follows = "nixpkgs"; 11 11 }; 12 12 }; ··· 16 16 system = "aarch64-linux"; 17 17 modules = [ 18 18 ./configuration.nix 19 + home-manager.nixosModules.home-manager 20 + ./home/khuedoan.nix 19 21 ]; 20 22 }; 21 23 };
+10
home/khuedoan.nix
··· 1 + { 2 + home-manager.useGlobalPkgs = true; 3 + home-manager.useUserPackages = true; 4 + home-manager.users.khuedoan = { 5 + home.stateVersion = "23.05"; 6 + services = { 7 + easyeffects.enable = true; 8 + }; 9 + }; 10 + }