Nix configurations for my personal machines (Linux & macOS)

Remove astal/ags for now

ovyerus.com 9950bd4c ee5d3c1c

verified
+16 -59
-43
flake.lock
··· 1 1 { 2 2 "nodes": { 3 - "ags": { 4 - "inputs": { 5 - "astal": "astal", 6 - "nixpkgs": [ 7 - "nixpkgs" 8 - ] 9 - }, 10 - "locked": { 11 - "lastModified": 1744557573, 12 - "narHash": "sha256-XAyj0iDuI51BytJ1PwN53uLpzTDdznPDQFG4RwihlTQ=", 13 - "owner": "Aylur", 14 - "repo": "ags", 15 - "rev": "3ed9737bdbc8fc7a7c7ceef2165c9109f336bff6", 16 - "type": "github" 17 - }, 18 - "original": { 19 - "owner": "Aylur", 20 - "repo": "ags", 21 - "type": "github" 22 - } 23 - }, 24 - "astal": { 25 - "inputs": { 26 - "nixpkgs": [ 27 - "ags", 28 - "nixpkgs" 29 - ] 30 - }, 31 - "locked": { 32 - "lastModified": 1742571008, 33 - "narHash": "sha256-5WgfJAeBpxiKbTR/gJvxrGYfqQRge5aUDcGKmU1YZ1Q=", 34 - "owner": "aylur", 35 - "repo": "astal", 36 - "rev": "dc0e5d37abe9424c53dcbd2506a4886ffee6296e", 37 - "type": "github" 38 - }, 39 - "original": { 40 - "owner": "aylur", 41 - "repo": "astal", 42 - "type": "github" 43 - } 44 - }, 45 3 "flake-utils": { 46 4 "inputs": { 47 5 "systems": "systems" ··· 354 312 }, 355 313 "root": { 356 314 "inputs": { 357 - "ags": "ags", 358 315 "home-manager": "home-manager", 359 316 "iosevka-solai": "iosevka-solai", 360 317 "lix-module": "lix-module",
+15 -15
flake.nix
··· 34 34 inputs.nixpkgs.follows = "nixpkgs"; 35 35 }; 36 36 37 - ags = { 38 - url = "github:Aylur/ags"; 39 - inputs.nixpkgs.follows = "nixpkgs"; 40 - }; 37 + # ags = { 38 + # url = "github:Aylur/ags"; 39 + # inputs.nixpkgs.follows = "nixpkgs"; 40 + # }; 41 41 }; 42 42 43 43 outputs = { 44 - ags, 44 + # ags, 45 45 home-manager, 46 46 lix-module, 47 47 niri-flake, ··· 53 53 } @ inputs: let 54 54 system = "x86_64-linux"; 55 55 pkgs = nixpkgs.legacyPackages.${system}; 56 - agsPkgs = ags.packages.${system}; 56 + # agsPkgs = ags.packages.${system}; 57 57 in { 58 58 packages.${system} = { 59 59 iconifydl = pkgs.callPackage ./pkgs/iconifydl.nix {}; 60 60 61 - default = ags.lib.bundle { 62 - inherit pkgs; 63 - src = ./files/astal; 64 - name = "ovy-shell"; 65 - entry = "app.ts"; 66 - }; 61 + # default = ags.lib.bundle { 62 + # inherit pkgs; 63 + # src = ./files/astal; 64 + # name = "ovy-shell"; 65 + # entry = "app.ts"; 66 + # }; 67 67 }; 68 68 69 - devShells.x86_64-linux.default = pkgs.mkShell { 70 - buildInputs = [agsPkgs.agsFull agsPkgs.io agsPkgs.apps agsPkgs.tray self.packages.${system}.iconifydl]; 71 - }; 69 + # devShells.x86_64-linux.default = pkgs.mkShell { 70 + # buildInputs = [agsPkgs.agsFull agsPkgs.io agsPkgs.apps agsPkgs.tray self.packages.${system}.iconifydl]; 71 + # }; 72 72 73 73 nixosConfigurations.wallsocket = nixpkgs.lib.nixosSystem { 74 74 system = "x86_64-linux";
+1 -1
home/wallsocket.nix
··· 27 27 }; 28 28 29 29 # Temporary location for these 30 - home.packages = [pkgs.inotify-tools inputs.ags.packages.${pkgs.system}.default]; 30 + # home.packages = [pkgs.inotify-tools inputs.ags.packages.${pkgs.system}.default]; 31 31 32 32 home.sessionVariables.DOCKER_HOST = "unix:///run/user/1000/podman/podman.sock"; 33 33