1
1
Fork 0

Compare commits

..

3 Commits

Author SHA1 Message Date
Tim Van Baak e709ed2a72 imperium: add audacity 2024-08-16 18:21:14 -07:00
Tim Van Baak 293d638a67 imperium: add distrobox
Getting the C# debugger to work in vscode on NixOS was too hard when I can just run Ubuntu instead
2024-08-16 18:20:35 -07:00
Tim Van Baak 7b91747729 imperium: refactor inline modules to flake output 2024-08-16 18:18:10 -07:00
3 changed files with 42 additions and 7 deletions

View File

@ -113,13 +113,30 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-unstable": {
"locked": {
"lastModified": 1723362943,
"narHash": "sha256-dFZRVSgmJkyM0bkPpaYRtG/kRMRTorUIDj8BxoOt1T4=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "a58bc8ad779655e790115244571758e8de055e3d",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"flake-compat": "flake-compat", "flake-compat": "flake-compat",
"intake": "intake", "intake": "intake",
"intake-sources": "intake-sources", "intake-sources": "intake-sources",
"nixpkgs-2311": "nixpkgs-2311", "nixpkgs-2311": "nixpkgs-2311",
"nixpkgs-2405": "nixpkgs-2405" "nixpkgs-2405": "nixpkgs-2405",
"nixpkgs-unstable": "nixpkgs-unstable"
} }
} }
}, },

View File

@ -2,6 +2,7 @@
inputs = { inputs = {
nixpkgs-2311.url = "github:NixOS/nixpkgs/23.11"; nixpkgs-2311.url = "github:NixOS/nixpkgs/23.11";
nixpkgs-2405.url = "github:NixOS/nixpkgs/nixos-24.05"; nixpkgs-2405.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-compat = { flake-compat = {
url = "github:edolstra/flake-compat"; url = "github:edolstra/flake-compat";
flake = false; flake = false;
@ -21,11 +22,25 @@
self, self,
nixpkgs-2311, nixpkgs-2311,
nixpkgs-2405, nixpkgs-2405,
nixpkgs-unstable,
flake-compat, flake-compat,
intake, intake,
intake-sources, intake-sources,
}@inputs: { }@inputs: {
nixosModules.beatific = import ./modules/beatific.nix; nixosModules = {
beatific = import ./modules/beatific.nix;
tf2-gperftools = ({ ... }: {
environment.systemPackages = [ nixpkgs-2405.legacyPackages."i686-linux".gperftools ];
});
unstable-vscode = ({ ... }: let
pkgs = import nixpkgs-unstable { system = "x86_64-linux"; config.allowUnfree = true; };
in {
environment.systemPackages = [
pkgs.vscode
pkgs.icu
];
});
};
nixosConfigurations = { nixosConfigurations = {
backyard = nixpkgs-2405.lib.nixosSystem { backyard = nixpkgs-2405.lib.nixosSystem {
@ -62,9 +77,8 @@
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
self.nixosModules.beatific self.nixosModules.beatific
({ ... }: { self.nixosModules.tf2-gperftools
environment.systemPackages = [ nixpkgs-2405.legacyPackages."i686-linux".gperftools ]; self.nixosModules.unstable-vscode
})
./machine/imperium ./machine/imperium
]; ];
}; };

View File

@ -56,7 +56,7 @@
}; };
users.users.tvb = { users.users.tvb = {
extraGroups = [ "networkmanager" ]; extraGroups = [ "networkmanager" "docker" ];
packages = [ packages = [
(pkgs.writeShellScriptBin "yt-dlp" ''exec $HOME/.yt-dlp/bin/yt-dlp "$@"'') (pkgs.writeShellScriptBin "yt-dlp" ''exec $HOME/.yt-dlp/bin/yt-dlp "$@"'')
]; ];
@ -71,9 +71,11 @@
beatific.extraPrograms = true; beatific.extraPrograms = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
audacity
bitwarden bitwarden
bitwarden-cli bitwarden-cli
comic-mono comic-mono
distrobox
firefox firefox
gnome.gnome-terminal gnome.gnome-terminal
gthumb gthumb
@ -81,8 +83,10 @@
mpv mpv
obsidian obsidian
unzip unzip
vscodium
]; ];
programs.nix-ld.enable = true;
virtualisation.docker.enable = true; # needed for distrobox
networking.firewall = { networking.firewall = {
enable = false; enable = false;