This commit is contained in:
Steph 2023-02-02 20:25:03 +01:00
parent 4189b2cf29
commit 39fa80f9db
3 changed files with 26 additions and 3 deletions

View File

@ -119,6 +119,7 @@
obs-studio obs-studio
foliate foliate
pinta pinta
prismlauncher
]; ];
}; };
@ -168,6 +169,8 @@
openvpn openvpn
udev udev
usbutils usbutils
evolution-ews
evolution
gnome.gnome-tweaks gnome.gnome-tweaks
gnomeExtensions.tray-icons-reloaded gnomeExtensions.tray-icons-reloaded
@ -188,6 +191,9 @@
services.power-profiles-daemon.enable = false; services.power-profiles-daemon.enable = false;
services.tlp.enable = true; services.tlp.enable = true;
services.flatpak.enable = true;
#services.mysql.package = pkgs.mariadb; #services.mysql.package = pkgs.mariadb;
#services.mysql.enable = true; #services.mysql.enable = true;
#services.mysql.ensureUsers = [ #services.mysql.ensureUsers = [
@ -313,7 +319,6 @@ $NEW_PROMPT_COMMAND"
set -g set-titles-string "#T" set -g set-titles-string "#T"
''; '';
services.flatpak.enable = true;
dconf.settings = { dconf.settings = {

View File

@ -37,10 +37,27 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-unstable": {
"locked": {
"lastModified": 1675183161,
"narHash": "sha256-Zq8sNgAxDckpn7tJo7V1afRSk2eoVbu3OjI1QklGLNg=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e1e1b192c1a5aab2960bf0a0bd53a2e8124fa18e",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"home": "home", "home": "home",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable"
} }
} }
}, },

View File

@ -3,12 +3,13 @@
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05"; nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home.url = "github:nix-community/home-manager/release-22.05"; home.url = "github:nix-community/home-manager/release-22.05";
home.inputs.nixpkgs.follows = "nixpkgs"; home.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = { self, nixpkgs, home }: { outputs = { self, nixpkgs, nixpkgs-unstable, home }: {
nixosConfigurations.iota = nixpkgs.lib.nixosSystem { nixosConfigurations.iota = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";